Skip to content

Instantly share code, notes, and snippets.

@duolaaa
Forked from wmfairuz/install-neo4j
Created October 18, 2016 06:00
Show Gist options
  • Save duolaaa/de4e3871970cd9ca5712144560704f05 to your computer and use it in GitHub Desktop.
Save duolaaa/de4e3871970cd9ca5712144560704f05 to your computer and use it in GitHub Desktop.
install-neo4j
# start root shell
sudo -s
# Import our signing key
wget -O - http://debian.neo4j.org/neotechnology.gpg.key | apt-key add -
# Create an Apt sources.list file
echo 'deb http://debian.neo4j.org/repo stable/' > /etc/apt/sources.list.d/neo4j.list
# Find out about the files in our repository
apt-get update
# Install Neo4j, community edition
apt-get install neo4j
# start neo4j server, available at http://localhost:7474 of the target machine
neo4j start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment