-
-
Save duolaaa/de4e3871970cd9ca5712144560704f05 to your computer and use it in GitHub Desktop.
install-neo4j
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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