web-dev-qa-db-fra.com

Installer Neo4j Ubuntu 18.04

Je suis ce blog pour installer la dernière version de Neo4j dans Ubuntu 18.04.

J'ai déjà mis à jour Ubuntu avec les commandes suivantes.

$ Sudo apt-get update
$ Sudo apt-get dist-upgrade

Quand j’ai suivi l’installation de Neo4j à la fin de chaque erreur,

Unable to locate package neo4j

Le problème est ici:

$ Sudo apt-get udpate

Reading package lists... Done                                                                   
E: Release file for https://debian.neo4j.org/repo/stable/Release is not valid yet (invalid for another 1min 22s). Updates for this repository will not be applied.
W: Debian shuts down public FTP services currently still used in your sources.list(5) as 'ftp://ftp.nl.debian.org/debian/'.
   See press release https://debian.org/News/2017/20170425 for details.
2
Gaurav Sharma

J'ai aussi eu le même problème.


Afin d'installer neo4j dans Ubuntu 18.04
Entrez en tant que root

$ Sudo su

Suivez ces étapes

$ 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


Cela vous aidera.

9
Vishnu M