Created
October 15, 2016 00:00
-
-
Save danielef/076b375e895939a9570c3c814e257466 to your computer and use it in GitHub Desktop.
JMX SOAP-Version 5.3.0.GA (without authentication)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## -*- shell-script -*- ###################################################### | |
## ## | |
## JBoss Bootstrap Script Configuration ## | |
## ## | |
############################################################################## | |
### $Id: run.conf 91533 2009-07-22 01:20:05Z gbadner $ | |
# | |
# This shell script is sourced by run.sh to initialize the environment | |
... | |
JAVA_OPTS="$JAVA_OPTS -Djboss.platform.mbeanserver" | |
JAVA_OPTS="$JAVA_OPTS -Djavax.management.builder.initial=org.jboss.system.server.jmx.MBeanServerBuilderImpl" | |
JAVA_OPTS="$JAVA_OPTS -Dcom.sun.management.jmxremote=true" | |
JAVA_OPTS="$JAVA_OPTS -Dcom.sun.management.jmxremote.local.only=false" | |
JAVA_OPTS="$JAVA_OPTS -Dcom.sun.management.jmxremote.port=9999" | |
JAVA_OPTS="$JAVA_OPTS -Dcom.sun.management.jmxremote.authenticate=false" | |
JAVA_OPTS="$JAVA_OPTS -Dcom.sun.management.jmxremote.ssl=false" | |
JAVA_OPTS="$JAVA_OPTS -Djava.rmi.server.hostname=<HOST-IPADDR>" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment