meow
meow

Reputation: 28164

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

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.

Upvotes: 0

Views: 1274

Answers (1)

jood
jood

Reputation: 2397

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

Upvotes: 3

Related Questions