RackSpace 云服务器 Ubuntu-12.04、Intellij Idea-11.1.2、Windows-8、Tomcat-7.0.26、JDK-6。
在 Intellij Idea 上,当我尝试在远程 Tomcat 7 服务器上运行 jsf 项目时,它说:
运行服务器名时出错:无法连接到IP 地址:1099
似乎问题是关于 1099 的 JNDI 端口,但我猜我无法激活它。Tomcat配置是……。像那样:
我试过什么?
在服务器端设置 CATALINA_OPTS 或 JAVA_OPTS:
CATALINA_OPTS=-Dcom.sun.management.jmxremote
-Dcom.sun.management.jmxremote.port=1099
-Dcom.sun.management.jmxremote.ssl=false
-Dcom.sun.management.jmxremote.authenticate=false
和
JAVA_OPTS=-Dcom.sun.management.jmxremote
-Dcom.sun.management.jmxremote.port=1099
-Dcom.sun.management.jmxremote.ssl=false
-Dcom.sun.management.jmxremote.authenticate=false
但是这个没有用,有什么想法吗?