Reputation: 35
Should i install it with "yum" command . I searched a lot but didn't find anything concerning the installation on Centos. thanks
Upvotes: 0
Views: 8359
Reputation: 5817
I would say the best option is to install the tar file. You will need to make sure you have Java running on your system beforehand. After that you can follow the steps below.
sudo yum install wget
wget https://neo4j.com/artifact.php?name=neo4j-community-3.0.3-unix.tar.gz
tar -xf <PACKAGE_NAME>.tar.gz
bin/neo4j console
Upvotes: 1
Reputation: 8546
There is an "experimental" yum repository for Neo4j with installation instructions here. Note that is experimental only and should not be used in production environments.
For a more stable / production environment follow the instructions for downloading Neo4j here. More specific linux installation information (such as how to run Neo4j as a service) is available here.
Upvotes: 2