vote up 2 vote down star

Hi, I just deployed a web application on JBOSS 4.2. It can be accessed locally only (http://localhost:8080/myApp). I cant access it from remote computer by typing its domain: (www.hostname.com:8080/myApp). I added Port 8080 as Exception in Windows Firewall. Note that the host (www.hostname.com) is reachable from remote computers via IIS on port 80.

Thanks, Rod

flag

1 Answer

vote up 5 vote down check

JBoss listens on localhost only by default. To make it listen on the hostname also, start it with the -b flag:

run.bat -b 0.0.0.0

this will make it listen on every available address on that machine. To limit to a single address, replace 0.0.0.0 with your IP address.

link|flag
Thanks you(!) it works. – Rod Jul 16 at 9:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.