mac 上的 "neo4j-server.properties" 文件在哪里?

Where is the "neo4j-server.properties" file on mac?

我安装了 brew install neo4j,然后安装了 ruby gem for neo4j。

当我尝试 运行 它时,出现错误:

`handle_response_error!': Expected response code 200 Error for request http://localhost:7474/db/data/, 401 (Neo4j::Server::Resource::ServerException)

有人告诉我 修改 neo4j-server.properties 文件,但我在雪松中找不到它,唯一的文件是 bin 文件。

您可以使用查找命令查找您的文件,如果它存在于您的计算机上:

find / -name "neo4j-server.properties"

(可能需要 sudo) 此命令需要一段时间。

我认为 brew 将 /usr/local/Cellar 中的所有内容存储在 mac 上,因此您可以在那里搜索表单:

find /usr/local/Cellar -name "neo4j-server.properties"

这并不能准确回答您的问题,但我认为这可能有所帮助