Neo4j Ubuntu 18.04 をインストールする

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.

答え1

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


Ubuntu 18.04にneo4jをインストールするには、
rootとして入力します

$ 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


これは役に立ちます。

関連情報