我在redhat环境中安装了jboss-eap-6.2.0并启动了服务器。但是我无法通过http://<>:8080访问主页。我必须这样做使用IP地址访问家庭或使用http://<>:8080等名称获取时间。所以我想知道这里有什么问题,为什么不在这里看到jboss回家?
1.Is there any way to check the server running in putty command line ?
2.Able to install the software connecting via ip but same ip is not allowing to access jboss page .So is firewall blocking the port 8080 ?
请告知
答案 0 :(得分:1)
从JBOSS_HOME/standalone/configuration
目录中打开standalone.xml文件。
在那里查找所有文本jboss.bind.address
,并使用服务器的IP地址更改IP,以便您可以从本地PC访问它。
例如
${jboss.bind.address:192.168.1.68}
${jboss.bind.address.management:192.168.1.68}
... and so on...
此外,您还可以在xml文件中查找环回IP地址(127.0.0.1
)并替换它。
答案 1 :(得分:0)
即使我在centos machine.i上安装jboss7时遇到同样的问题,发现其他应用程序正在使用8080端口,因此禁止jboss7使用该端口。
- 你可以 telnet localhost 8080 (或)ps -ef | grep java 检查jboss是否正在运行
如果它正常运行且您仍然无法通过浏览器连接
使用 nmap 检查在该端口上运行的服务
您可以在此处编辑端口配置 的的JBoss /独立/配置/ standalone.xml 强>
再次运行jboss
答案 2 :(得分:0)
您需要在standalone.xml中设置socket-binding中默认接口的值。