March 2018
Beginner to intermediate
308 pages
8h 23m
English
Here, we will install a single Neo4j instance running on one server. We will start by downloading the latest edition of the Neo4j Community Edition from https://neo4j.com/download/other-releases/#releases. There are downloads with nice, GUI-based installers available for most operating systems. We will select the Linux tarball install and download it. Then, we will copy the tarball to the directory from which we intend to run it. For this example, we will use the Neo4j 3.3.3 Community Edition:
sudo mkdir /localsudo chown $USER:$USER /localcd /localmv ~/Downloads/neo4j-community-3.3.3-unix.tar.gz .
Now we can untar it, and it should create a directory and expand the files into it:
tar -zxvf neo4j-community-3.3.3-unix.tar.gz
Read now
Unlock full access