Reset web interface password on Neo4j EC2 instance

2019-08-28 10:39发布

问题:

I set up Neo4j on an EC2 instance using this

http://www.neo4j.org/develop/ec2

I have the SSH key so I can SSH into the instance, but I don't remember the password I set up for the web interface. I believe this is a Jetty basicauth equivalent, but I'm not sure, nor could I find the config files that might lead me to the right place. How can I reset this password?

回答1:

`neo4j-server.properties´ has a setting for the auth-extension being used by the puppet script:

org.neo4j.server.credentials=<user>:<pass>

I'm not sure where neo4j-server.properties is located on your machine, check /etc/neo4j or use find / -name neo4j-server.properties.



标签: neo4j Jetty