JBoss AS 7 not accepting remote connections

后端 未结 4 1148
粉色の甜心
粉色の甜心 2020-12-23 02:24

I am using JBoss AS 7 and trying to connect to my application using the IP (from a computer in the intranet). It is not working. If I test from the computer which has the se

4条回答
  •  南笙
    南笙 (楼主)
    2020-12-23 03:02

    Did you configure the IP address into the config file?

    Starting jboss without configuring the ip address will set the default address for jboss to localhost which is fit for development or maybe for a production server, where apache is used as the proxy to jboss and resides in the same machine.

    To set the ip address for JBoss :

    To a specific IP address
    run.sh -b 10.62.31.31
    To localhost or the IP address assigned to the server
    run.sh -b 0.0.0.0
    

    You can also change it in the configuration file under the section.

提交回复
热议问题