나는 팔로우하고 있다이 블로그Ubuntu 18.04에 최신 Neo4j를 설치하려면
나는 이미 다음 명령으로 우분투를 업데이트했습니다.
$ 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
나도 같은 문제가있었습니다.
우분투 18.04에 neo4j를 설치하려면
루트로 입력하세요.
$ 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
이것은 당신에게 도움이 될 것입니다..