Archive

Posts Tagged ‘accessing jboss remotely’

Not able to connect to the Jboss server remotely?

April 29th, 2009

Not able to connect to the server remotely? All the services appear to be bound to localhost only. Here is the solution for connecting Jboss remotely.

Before 4.2.0.GA jboss always bound to the any address “0.0.0.0″. Many people would put unprotected instances of JBoss on the internet, or even on their own local LAN. For Security reason Jboss is bound only to localhost, now you have to explicitly choose to bound to any address or specific address, so with the “-b” option of jboss you can bound to any address. e.g.

For UNIX users:

./run.sh -b 0.0.0.0

For Windows users:

run.bat -b 0.0.0.0

Note: Starting the server with -b 0.0.0.0 will get things going for you.

S.Chandru Jboss , , ,