Install Neo4j on Ubuntu 18.04

  Neo4j

Software Installation

Install the software

sudo su
wget --no-check-certificate -O - https://debian.neo4j.org/neotechnology.gpg.key | sudo apt-key add -
echo 'deb http://debian.neo4j.org/repo stable/' > /etc/apt/sources.list.d/neo4j.list
apt update
apt install neo4j

Verify Neo4j is running

systemctl status neo4j

Neo4j Browser

Log into the Neo4j Browser

http://localhost:7474/browser

If asked for a username / password

neo4j / neo4j

* You will be required to change the password upon login.

Install the Udemy Training Files

Download the course files to your Neo4j host

create-course-data
delete-all-data

cd /tmp
wget https://wiki.thomasandsofia.com/wp-content/uploads/2019/12/create-course-data.txt
wget https://wiki.thomasandsofia.com/wp-content/uploads/2019/12/delete-all-data.txt

Import the materials

cat create-course-data.txt | /usr/bin/cypher-shell -u neo4j -p PASSWORD

* After several seconds, you will see the data in the Neo4j Browser.

 

LEAVE A COMMENT