How to install Neo4j on Ubuntu 15.10?

How to install the latest version of Neo4j on Ubuntu?

Thanks

View Answers

March 24, 2016 at 3:31 AM

Hi,

Following video tutorial teaches you to install Neo4j on Ubuntu:

Thanks


April 13, 2016 at 3:39 AM

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









Related Tutorials/Questions & Answers:
Advertisements