Remote JMX functionality is disabled by default. You can connect to the Content Services MBean server through a JMX client that supports JSR-160 by editing your settings.
-
Ensure that you have this setting in your java_opts
file:
-Dcom.sun.management.jmxremote
This tells the running JVM to start the JMX service.
-
Ensure that you have the following properties set in the alfresco-global.properties file:
alfresco.jmx.connector.enabled=true alfresco.rmi.services.port=50500 alfresco.rmi.services.host=<hostname>
Check that the <hostname> can be resolved from where you’re running the JMX client.
- Open a JMX client that supports JMX Remoting (JSR-160).
-
Connect to the JMX
URL:
service:jmx:rmi:///jndi/rmi://<hostname\>:50500/alfresco/jmxrmi
where <hostname> is the name of a reachable domain name or an IP address. If you’re running this on the local server, you can use localhost.
- Enter the default JMX user name: controlRole
-
Enter the default JMX password: change_asap
Important: You must change the default JMX password as soon as possible.
The user controlRole is the default user name used to access and configure with a JMX client.
The user monitorRole is the default user name used within monitoring tools, for example, Nagios or Hyperic.
-
Change the default JMX password as soon as possible. You can set a new password
in override configuration files. Create two new files called:
alfresco-jmxrmi.password alfresco-jmxrmi.access
Copy the files to a location of your choice and then add the alfresco.jmx.dir= property to the alfresco-global.properties file to specify the directory path of the configuration files. For example:
alfresco.jmx.dir=/etc/alfresco/config
You can also set this on the command line:
-Dalfresco.jmx.dir=/etc/alfresco/config
-
Open the alfresco-jmxrmi.password file and add the following
properties for the monitorRole and controlRole
users, where new_pw is your preferred
password.
monitorRole new_pw controlRole new_pw
- Save the file.
-
Open the alfresco-jmxrmi.access file and add the following
properties for the read-only or read/write access levels of each
user.
monitorRole readonly controlRole readwrite
-
Save the file.
Note: It’s possible to set the JVM (Oracle/Sun JVM-specific) arguments directly:
-Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.access.file=/etc/alfresco/config/jmxremote.access -Dcom.sun.management.jmxremote.password.file=/etc/alfresco/config/jmxremote.password -Dcom.sun.management.jmxremote.authenticate=true