You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The GDS library is intended to be used on a standalone Neo4j server.
4
+
On a standalone Neo4j Server, GDS will need to be installed and configured manually.
5
5
6
-
On a standalone Neo4j Server, the library will need to be installed and configured manually.
6
+
1. Download `neo4j-graph-data-science-[version].zip` from the https://neo4j.com/download-center/#algorithms[Neo4j Download Center]
7
7
8
-
1. Download `neo4j-graph-data-science-[version].jar` from the https://neo4j.com/download-center/#algorithms[Neo4j Download Center] and copy it into the `$NEO4J_HOME/plugins` directory.
8
+
2. Unzip the archive and move the `neo4j-graph-data-science-[version].jar` file into the `$NEO4J_HOME/plugins` directory.
9
9
10
-
11
-
2. Add the following to your `$NEO4J_HOME/conf/neo4j.conf` file:
10
+
3. Add the following to your `$NEO4J_HOME/conf/neo4j.conf` file:
12
11
+
13
12
----
14
13
dbms.security.procedures.unrestricted=gds.*
15
14
----
16
15
This configuration entry is necessary because the GDS library accesses low-level components of Neo4j to maximise performance.
17
16
+
18
17
19
-
3. Check if the procedure allowlist is enabled in the `$NEO4J_HOME/conf/neo4j.conf` file and add the GDS library if necessary:
18
+
4. Check if the procedure allowlist is enabled in the `$NEO4J_HOME/conf/neo4j.conf` file and add the GDS library if necessary:
NOTE: Before `Neo4j 4.2`, the configuration setting is called `dbms.security.procedures.whitelist`
27
26
28
27
29
-
4. Restart Neo4j
28
+
5. Restart Neo4j
30
29
31
30
32
31
[[neo4j-server-verify]]
33
32
== Verifying installation
34
33
35
-
To verify your installation, the library version can be printed by entering into the browser in Neo4j Desktop and calling the `gds.version()` function:
34
+
To verify your installation, print the version of Graph Data Science by opening Neo4j Browser and running the `gds.version()` function:
36
35
37
36
[source, cypher, role=noplay]
38
37
----
39
-
RETURN gds.version()
38
+
RETURN gds.version();
40
39
----
41
40
42
-
To list all installed algorithms, run the `gds.list()` procedure:
41
+
To list all available procedures, run the `gds.list()` procedure:
0 commit comments