Skip to content

Commit ceb4f73

Browse files
nvitucciMats-SX
andauthored
Apply suggestions from code review
Co-authored-by: Mats Rydberg <mats@neo4j.org>
1 parent ad7d835 commit ceb4f73

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/modules/ROOT/pages/installation/neo4j-server.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,24 @@ The GDS plugin is located in the `products` directory.
99
To install the GDS plugin in a Neo4j Enterprise Edition or Neo4j Community Edition installation, follow these steps:
1010

1111
[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.
1313

1414
. Copy or move the file `neo4j-graph-data-science-[version].jar` from the `products` directory to the `plugins` directory.
1515

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:
1717
+
1818
----
1919
dbms.security.procedures.unrestricted=gds.*
2020
----
2121
This configuration entry is necessary because the GDS library accesses low-level components of Neo4j to maximise performance.
2222
+
2323
. 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:
2525
+
2626
----
2727
dbms.security.procedures.allowlist=gds.*
2828
----
2929
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].
3030
+
3131

32-
. Restart the Neo4j Server, using for example `bin/neo4j restart`.
32+
. Start (or restart) the Neo4j Server.

0 commit comments

Comments
 (0)