To resolve this issue, you must enable JMX to troubleshoot session of vRA application.
To enable JMX port on vRA 7.x appliance:
- Open the /etc/vcac/setenv-user file and add the following entries:
#Enable jmx console
VCAC_OPTS="$VCAC_OPTS -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=2839 -Dcom.sun.management.jmxremote.local.only=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Djava.rmi.server.hostname=IP_of_vRA_server"
- Open the /etc/vcac/catalina.properties file and add entries at the bottom:
#configure jmx port listener:
java.rmi.server.hostname=IP_of_vRA_server
- Restart vcac-server:
service vcac-server restart
Note: Set the IP of the vRA server instead of IP_of_vRA_server.