Instalar Neo4j Ubuntu 18.04

Instalar Neo4j Ubuntu 18.04

Estoy siguiendoeste blogpara instalar la última versión de Neo4j en Ubuntu 18.04.

Ya actualicé ubuntu con los siguientes comandos.

$ sudo apt-get update
$ sudo apt-get dist-upgrade

Cuando seguí Neo4jel paso de instalación al final cada vez que recibía el error:

Unable to locate package neo4j

El problema está aquí:

$ 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.

Respuesta1

También tuve el mismo problema.


Para instalar neo4j en ubuntu 18.04
Ingrese como root

$ sudo su

Sigue estos pasos

$ 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


Esto te ayudara..

información relacionada