0

I did brew install neo4j, followed by installing the ruby gem for neo4j.

When I tried to run it, I got an error:

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

I was told on this thread to modify the neo4j-server.properties file, but i could not find it in the cedars, the only files there was the bin files.

Community
  • 1
  • 1
meow
  • 27,476
  • 33
  • 116
  • 177

1 Answers1

3

You can use the find command to find your file, if it exists on your computer:

find / -name "neo4j-server.properties"

(sudo might be needed) This command is going to take a while.

I think brew stores everything in /usr/local/Cellar on a mac, so you can search form there:

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

This doesn't answer exactly your question but I thought this may help

jood
  • 2,188
  • 2
  • 21
  • 32