Skip to content

Instantly share code, notes, and snippets.

@leviyehonatan
Last active August 29, 2015 14:01
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 leviyehonatan/2fb500445faf1462ee0d to your computer and use it in GitHub Desktop.
Save leviyehonatan/2fb500445faf1462ee0d to your computer and use it in GitHub Desktop.
neo4j installation script for ubuntu
# Import our signing key
sudo wget -O - http://debian.neo4j.org/neotechnology.gpg.key | apt-key add -
# Create an Apt sources.list file
sudo echo 'deb http://debian.neo4j.org/repo stable/' > /etc/apt/sources.list.d/neo4j.list
# Find out about the files in our repository
sudo apt-get update
# Install Neo4j, community edition
sudo apt-get install neo4j
# start neo4j server, available at http://localhost:7474 of the target machine
sudo service neo4j-service start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment