File tree Expand file tree Collapse file tree 1 file changed +15
-6
lines changed
modules/ROOT/pages/installation/linux Expand file tree Collapse file tree 1 file changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -31,33 +31,42 @@ Installation instructions can be found on the manufacturer's website:
3131[[linux-rpm-install-standard]]
3232=== Set up the repository
3333
34- To add the Neo4j repository to the package manager, run the following command as a sudo user:
35-
34+ . Import the Neo4j GPG public key into the system’s RPM keyring.
35+ The key is required to verify the authenticity of the Neo4j packages you will install.
36+ +
3637[source, shell, subs="attributes"]
3738----
3839rpm --import https://debian.neo4j.com/neotechnology.gpg.key
3940----
4041
41- Create a `neo4j.repo` file:
42-
42+ . Create a `neo4j.repo` file in the `/etc/yum.repos.d/` directory.
43+ This file contains the repository configuration for Neo4j.
44+ +
4345[source, shell, subs="attributes"]
4446----
45- cat << EOF > /etc/yum.repos.d/neo4j.repo
47+ cat <<EOF > /etc/yum.repos.d/neo4j.repo
4648[neo4j]
4749name=Neo4j RPM Repository
4850baseurl=https://yum.neo4j.com/stable/latest
4951enabled=1
5052gpgcheck=1
5153EOF
5254----
53-
55+ +
5456[NOTE]
5557====
5658If you are upgrading from Neo4j 5.x or earlier, you may need to clear the package manager cache before Neo4j packages become available:
5759
5860`yum clean dbcache`
5961====
6062
63+ . Verify that the Neo4j repository is set up correctly by listing the available Neo4j packages versions:
64+ +
65+ [source, shell]
66+ ----
67+ yum list neo4j --showduplicates
68+ ----
69+
6170=== Install Neo4j
6271
6372Install Neo4j as `root` using the following commands depending on which edition you are using:
You can’t perform that action at this time.
0 commit comments