Ubuntu 13.04 and Neo4j in just a few simple steps
Ubuntu 13.04 from (http://www.ubuntu.com/start-download?distro=desktop&bits=32&release=latest)
There is really no reason to write this since the instructions to install both Ubuntu 13.04 and Neo4j are sufficient. But then you always seems to end up with a tweak somewhere so...
Just step though the Ubuntu 13.04 installation screens and fill in the values you need to change
From this point execute the following commands as root:
apt-get update
apt-get upgrade
wget -O - http://debian.neo4j.org/neotechnology.gpg.key | apt-key add -
echo 'deb http://debian.neo4j.org/repo stable/' > /etc/apt/sources.list.d/neo4j.list
apt-get update
apt-get install neo4j
service neo4j-service status
Should provide the result "Neo4j Server is running at pid".
Next is to fire up the browser and check that the webadmin is responsive at http://localhost:7474
Now a brand new Neo4j installation is up and running. Great whats next?
There is really no reason to write this since the instructions to install both Ubuntu 13.04 and Neo4j are sufficient. But then you always seems to end up with a tweak somewhere so...
Just step though the Ubuntu 13.04 installation screens and fill in the values you need to change
Reboot and you should a brand new Ubuntu installation to play with.
Now lets add Neo4j. Fire up a terminal and write sudo -s to get root priviliges:
apt-get update
apt-get upgrade
wget -O - http://debian.neo4j.org/neotechnology.gpg.key | apt-key add -
echo 'deb http://debian.neo4j.org/repo stable/' > /etc/apt/sources.list.d/neo4j.list
apt-get update
apt-get install neo4j
service neo4j-service status
Should provide the result "Neo4j Server is running at pid
Next is to fire up the browser and check that the webadmin is responsive at http://localhost:7474
Now a brand new Neo4j installation is up and running. Great whats next?
Comments