Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to share jboss over network

I have jboss running on my machine on port 8080, i wanted to share jboss server on network, So that i ran jboss service using jbossws-native-4.0.2 but i am still not able to access jboss server on network, please help.

like image 666
Shrikant Jadhav Avatar asked Jul 06 '12 06:07

Shrikant Jadhav


1 Answers

Use the option -b 0.0.0.0 when starting jboss (run.sh or run.bat) this binds the port to all network interfaces. Default is localhost thats why you can't reach the server over the network.

like image 97
stacker Avatar answered Oct 27 '22 09:10

stacker