我做了brew install neo4j,然后为neo4j安装了ruby gem。
当我试图运行它时,我收到了一个错误:
`handle_response_error!': Expected response code 200 Error for request http://localhost:7474/db/data/, 401 (Neo4j::Server::Resource::ServerException)
我被告知在这个thread修改了neo4j-server.properties文件,但我在雪松中找不到它,唯一的文件就是bin文件。
答案 0 :(得分:3)
您可以使用find命令查找您的文件,如果它存在于您的计算机上:
find / -name "neo4j-server.properties"
(可能需要sudo) 这个命令需要一段时间。
我认为brew会将所有内容存储在Mac上的/ usr / local / Cellar中,因此您可以在那里搜索表单:
find /usr/local/Cellar -name "neo4j-server.properties"
这并不能完全回答你的问题,但我认为这可能会有所帮助