como instalar o Neo 4j no Ubuntu

0

Como instalar o neo4j no servidor Ubuntu por linha de comando. Eu realmente não encontrei nenhuma boa documentação.

Obrigado.

    
por Thirumal 16.12.2016 / 05:59

1 resposta

0

Adicione o repositório à lista de fontes:

wget -O - https://debian.neo4j.org/neotechnology.gpg.key | sudo apt-key add -
echo 'deb https://debian.neo4j.org/repo stable/' | sudo tee /etc/apt/sources.list.d/neo4j.list
sudo apt-get update

Para instalar o mais recente Neo4j Community Edition:

sudo apt-get install neo4j

Para instalar o mais recente Neo4j Enterprise Edition:

sudo apt-get install neo4j-enterprise

Verifique se o Java 8 ou superior está instalado no seu sistema.

    
por Thirumal 16.12.2016 / 06:06