Install Neo4j Ubuntu 18.04

I am following this blog to install latest Neo4j in Ubuntu 18.04.

I already update ubuntu with following commands.

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

When I followed Neo4j installation step at the end every time getting the error:

Unable to locate package neo4j

Problem is here:

$ sudo apt-get udpate
Reading package lists... Done
E: Release file for 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:// See press release for details.
3

1 Answer

I also had the same problem.


Inorder to install neo4j in ubuntu 18.04
Enter as root

$ sudo su

Follow these steps

$ wget --no-check-certificate -O - | sudo apt-key add -
$ echo 'deb stable/' > /etc/apt/sources.list.d/neo4j.list
$ apt update
$ apt install neo4j


This will help you..

3

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like