Skip to content
Closed
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
12 changes: 10 additions & 2 deletions modules/ROOT/pages/jmx-metrics.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ With this setup, you can connect to JMX monitoring of the Neo4j server using `<I
The file-based password authentication stores the password in clear-text and is intended only for development use.
====

You can set your password for JMX remote access and save it in the _conf/jmx.password_ configuration file.
Please note that on Unix-based systems, the _jmx.password_ file needs to be owned by the user that will run the server, and have permissions set to `0600`.
You can set your password for JMX remote access and save it in the _conf/jmx.password_ (Unix) and _c:\jmx.password_ (Windows) configuration file.
Note that the _jmx.password_ file needs to be owned by the user that runs the server and has permissions set to `0600`.

[source, properties]
----
Expand All @@ -142,6 +142,14 @@ dbms.jvm.additional=-Dcom.sun.management.jmxremote.password.file=/absolute/path/
dbms.jvm.additional=-Dcom.sun.management.jmxremote.access.file=/absolute/path/to/conf/jmx.access
----

On Windows, you need to change `/` to `\`:

[source, properties]
----
dbms.jvm.additional=-Dcom.sun.management.jmxremote.password.file=\absolute\path\to\conf\jmx.password
dbms.jvm.additional=-Dcom.sun.management.jmxremote.access.file=\absolute\path\to\conf\jmx.access
----

With this setup, you can connect to JMX monitoring of the Neo4j server using `<IP-OF-SERVER>:3637`, with the username `monitor`, and the password `password_to_be_changed`.


Expand Down