How to install the latest version of Neo4j on Ubuntu?
Thanks
Hi,
Following video tutorial teaches you to install Neo4j on Ubuntu:
Thanks
Hi,
Here is the commands:
How to install Neo4j on Ubuntu 15.10?
Add to apt package manager:
wget -O - http://debian.neo4j.org/neotechnology.gpg.key | apt-key add -
Add Neo4J to the Apt sources list:
echo 'deb http://debian.neo4j.org/repo stable/' > /etc/apt/sources.list.d/neo4j.list
Update:
apt-get update
Install neo4j:
apt-get install neo4j
Check status:
service neo4j-service status
For development enable the adming access from any IP:
cd /etc/neo4j vi neo4j-server.properties
and uncomment the following line:
#org.neo4j.server.webserver.address=0.0.0.0
Restart neo4j server:
service neo4j-service restart
Open browser and check the url: http://localhost:7474 http://192.168.10.101:7474
Thanks
Ads