2

Java VisualVM当 jboss 服务器使用 option 运行时,无法连接 Jboss 服务器-b 0.0.0.0

jboss 运行脚本 -run.sh -c web -b 0.0.0.0

当我尝试像这样运行jboss时 -run.sh -c web -b {MyIp}

然后 Java VisualVM 就可以连接 jboss 服务器了。

任何人都可以帮助我在 jboss 使用第一个选项运行时如何连接( -b 0.0.0.0)

run.conf在 jboss 的文件中使用这个配置

JAVA_OPTS="$JAVA_OPTS -XX:PermSize=256m -Dcom.sun.management.jmxremote.local.only=false -Dcom.sun.management.jmxremote=true -Dcom.sun.management.jmxremote.port=8077 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false"
4

1 回答 1

2

将此添加到JAVA_OPTS

JAVA_OPTS="$JAVA_OPTS -XX:PermSize=256m -Dcom.sun.management.jmxremote.local.only=false -Dcom.sun.management.jmxremote=true -Dcom.sun.management.jmxremote.port=8077 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false
-Djava.rmi.server.hostname=0.0.0.0"

而不是0.0.0.0使用您的系统IP

于 2013-04-03T11:41:23.983 回答