Dhouha Ben hamadou
Dhouha Ben hamadou

Reputation: 35

How to install Neo4j on Centos red hat?

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

Answers (2)

Michael Ramos
Michael Ramos

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.

first install wget if you don't already have it

sudo yum install wget

fetch the tar

wget https://neo4j.com/artifact.php?name=neo4j-community-3.0.3-unix.tar.gz

extract the contents

tar -xf <PACKAGE_NAME>.tar.gz

and now you should be able to run the bin

bin/neo4j console

Upvotes: 1

William Lyon
William Lyon

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

Related Questions