Ich folgedieser Blogum das neueste Neo4j in Ubuntu 18.04 zu installieren.
Ich habe Ubuntu bereits mit den folgenden Befehlen aktualisiert.
$ sudo apt-get update
$ sudo apt-get dist-upgrade
Neo4j
Als ich die Installationsschritte am Ende durchführte, erhielt ich jedes Mal die folgende Fehlermeldung:
Unable to locate package neo4j
Das Problem ist hier:
$ 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.
Antwort1
Ich hatte auch das gleiche Problem.
Um neo4j in Ubuntu 18.04 zu installieren,
geben Sie als root ein
$ sudo su
Folge diesen Schritten
$ 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
Das wird dir helfen..