01 Installing Neo4j - charlesfinney/neo4j GitHub Wiki
Installing Neo4j on Ubuntu - Step by Step guide
https://medium.com/@Jessicawlm/installing-neo4j-on-ubuntu-14-04-step-by-step-guide-ed943ec16c56
https://datawookie.netlify.com/blog/2016/09/installing-neo4j-on-ubuntu-16.04/
A. Before we install neo4j you should check java is installed in your system using;
java -showversion
B. If you have java skip to Step 1 is not installed on your system then install java using;
sudo add-apt-repository ppa:webupd8team /java // we need to run this command for install java
C. Make sure to update all dependency using;
sudo apt-get update
D. Install java now using;
sudo apt-get install oracle-java8-installer
E. After installing java please update all packages using;
sudo apt-get update
Step 1
with Java installed we will start the installation process for neo4j using;
wget -O - https://debian.neo4j.org/neotechnology.gpg.key | sudo apt-key add -
Step 2
then continue with;
echo 'deb http://debian.neo4j.org/repo stable/' >/tmp/neo4j.list
Step 3
then lets get a listing of versions and sources;
sudo mv /tmp/neo4j.list /etc/apt/sources.list.d
Step 4
and again this command will update all dependencies;
sudo apt-get update
Step 5
there are two neo4j versions available: community a free version, and enterprise a paid version. To install community edition;
sudo apt-get install neo4j
Step 6
After completing installation process restart your neo4j service using;
sudo service neo4j restart
Step 7
Now access neo4j locally using below URL
http://localhost:7474/browser/
Step 8
To access neo4j using IP address please, open neo4j config file using;
sudo nano /etc/neo4j/neo4j.conf
* obviously you can substitute nano for you specific editor
Step 9
Now uncomment and edit the following lines to reflect your IP address;
dbms.connector.bolt.listen_address = 0.0.0.0:7687
and
dbms.connector.http.listen_address = 172.16.16.155:7474

Step 10
After exiting and saving you edited config file, restart your neo4j service using;
sudo service neo4j restart
Step 11
Now you can access neo4j using below URL
http://your.ip.number.here:7474/browser/