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
Copy file name to clipboardExpand all lines: doc/modules/ROOT/pages/installation/neo4j-server.adoc
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,24 +9,24 @@ The GDS plugin is located in the `products` directory.
9
9
To install the GDS plugin in a Neo4j Enterprise Edition or Neo4j Community Edition installation, follow these steps:
10
10
11
11
[NOTE]
12
-
All paths in the following instructions are relative to the Neo4j installation directory.
12
+
All file paths in the following instructions are relative to the Neo4j installation directory.
13
13
14
14
. Copy or move the file `neo4j-graph-data-science-[version].jar` from the `products` directory to the `plugins` directory.
15
15
16
-
. Add the following to your `conf/neo4j.conf` file:
16
+
. Add the following wildcard match for all GDS procedures to your `conf/neo4j.conf` file:
17
17
+
18
18
----
19
19
dbms.security.procedures.unrestricted=gds.*
20
20
----
21
21
This configuration entry is necessary because the GDS library accesses low-level components of Neo4j to maximise performance.
22
22
+
23
23
. Check if the procedure allowlist is enabled in the `conf/neo4j.conf` file, namely if the `dbms.security.procedures.allowlist` option is _not_ commented out with a leading `#` sign.
24
-
In this case, add the GDS library to the allowlist:
24
+
In this case, add a wildcard match for all GDS procedures to the allowlist:
25
25
+
26
26
----
27
27
dbms.security.procedures.allowlist=gds.*
28
28
----
29
29
You can find more information on allow listing in the link:https://neo4j.com/docs/operations-manual/current/security/securing-extensions/#allow-listing[Operations Manual].
30
30
+
31
31
32
-
. Restart the Neo4j Server, using for example `bin/neo4j restart`.
0 commit comments