Skip to content

Instantly share code, notes, and snippets.

@felipebn
Created September 5, 2017 09:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save felipebn/78e4a62dbf61b3f9f51efc2dd1950923 to your computer and use it in GitHub Desktop.
Save felipebn/78e4a62dbf61b3f9f51efc2dd1950923 to your computer and use it in GitHub Desktop.
Steps to install Neo4j on Ubuntu
wget -O - https://debian.neo4j.org/neotechnology.gpg.key | sudo apt-key add -
echo 'deb http://debian.neo4j.org/repo stable/' | sudo tee -a /etc/apt/sources.list.d/neo4j.list
sudo apt-get update
sudo apt-get install neo4j=3.1.1
sudo apt-mark hold neo4j
curl -H "Content-Type: application/json" -X POST -d '{"password":"THE NEW PASSWORD"}' -u neo4j:neo4j http://localhost:7474/user/neo4j/password
## If you want to access via browser or neo4j-shell you need to check the config file!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment