We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 308e27e commit 832dda6Copy full SHA for 832dda6
config/setenv.bat
@@ -0,0 +1,4 @@
1
+rem run tomcat with JMX ability
2
+rem Run Tomcat as admin
3
+rem for remote connection add -Djava.rmi.server.hostname=TomcatServer_IP
4
+set CATALINA_OPTS=-Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=1099 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false
config/setenv.sh
+#!/usr/bin/env bash
+# run tomcat with JMX ability as admin
+# for remote connection add -Djava.rmi.server.hostname=TomcatServer_IP
+export CATALINA_OPTS="-Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=1099 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false"
0 commit comments