Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,28 +25,20 @@ bin/neo4j stop
----
dbms.security.auth_enabled=false
----
+
[NOTE]
====
It is recommended to block network connections during the recovery phase, so users can connect to Neo4j only via `localhost`.
This can be achieved by either:

* Temporarily commenting out the `server.default_listen_address` parameter:
+
[source, properties]
----
#server.default_listen_address=<your_configuration>
----

or

* Providing the specific localhost value:
. Block network connections during the recovery phase, so users can connect to Neo4j only via `localhost`.
This can be achieved by temporarily commenting out the `server.default_listen_address` parameter and providing the specific localhost value:
+
[source, properties]
----
server.default_listen_address=127.0.0.1
----
+
[NOTE]
====
Ensure, you have blocked all network connections for any individual services configured to listen to `listen_addresses`.
====
+
. Start Neo4j:
+
[source, shell]
Expand All @@ -72,11 +64,12 @@ dbms.security.auth_enabled=false
----
+
.. Disable the HTTP and HTTPS network connections and restrict the `bolt` connector to use only `localhost`.
Set `server.http.enabled` to `false`.
This ensures that no one from outside can access the cluster during the recovery period.
+
[source, properties]
----
#server.http.enabled=true
server.http.enabled=false
#server.https.enabled=true
server.bolt.listen_address:127.0.0.1
----
Expand Down