有两个主要的初始步骤可以勾选这个:
公开RMI将以下属性添加到JBOSS启动脚本
JAVA_OPTS =“$ JAVA_OPTS -Dcom.sun.management.jmxremote.port = 9999 -Dcom.sun.management.jmxremote.authenticate = false -Dcom.sun.management.jmxremote.ssl = false“
使RMI表现出来并且具有防火墙友好性https://community.jboss.org/wiki/UsingJBossBehindAFirewall
我怀疑.jmxremote.port是与
相同或不同的端口<attribute name="RmiPort">1098</attribute>
答案 0 :(得分:0)
下面设置RMI注册表端口,默认为1900。
-Dcom.sun.management.jmxremote.port=12345
以下将随机RMI端口设置为固定端口。
-Dcom.sun.management.jmxremote.rmi.port=12346
通过防火墙测试Java 8和Tomcat进程以及Spring-Boot(tomcat嵌入式)进程。