LoginSignup
0
0

More than 1 year has passed since last update.

Ubuntu18.04へのNeo4jインストール手順

Posted at

以下、Ubuntu18.04 に Neo4j Community Edition (v4.3.0) をインストールする手順。
(Ubuntu20.04でも同じ手順でいけるかも? ※試してない。)

OpenJDK11 をインストールしておく

$ sudo apt -y install openjdk-11-jdk
$ java --version
openjdk 11.0.11 2021-04-20
OpenJDK Runtime Environment (build 11.0.11+9-Ubuntu-0ubuntu2.18.04)
OpenJDK 64-Bit Server VM (build 11.0.11+9-Ubuntu-0ubuntu2.18.04, mixed mode, sharing)

Neo4j のリポジトリを追加

$ wget -O - https://debian.neo4j.com/neotechnology.gpg.key | sudo apt-key add -
$ echo 'deb https://debian.neo4j.com stable latest' | sudo tee -a /etc/apt/sources.list.d/neo4j.list
deb https://debian.neo4j.com stable latest
$ sudo apt-get update
$ apt list -a neo4j
一覧表示... 完了
neo4j/stable,stable 1:4.3.0 all

Neo4j Community Edition インストール

$ sudo apt-get install neo4j=1:4.3.0

※Enterprise Edition の場合はこっち↓。

$ sudo apt-get install neo4j-enterprise=1:4.3.0

Neo4j がインストールされたことを確認する

$ neo4j --version
neo4j 4.3.0
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0