web-dev-qa-db-ja.com

Neo4j Ubuntu 18.04をインストールします

私は このブログ に従ってUbuntu 18.04に最新のNeo4jをインストールしています。

次のコマンドですでにubuntuを更新しています。

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

エラーが発生するたびに最後にNeo4jインストール手順に従ったとき:

Unable to locate package neo4j

問題はここにあります:

$ 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

私も同じ問題を抱えていました。


Neo4jをubuntu 18.04にインストールするため
ルートとして入力

$ Sudo su

次の手順を実行します

$ 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


これはあなたを助けます。

9
Vishnu M