Jagadeesh
Jagadeesh

Reputation: 2800

Unable to access Jboss 4.3.0-GA using IP address

I have Jboss server 4.3.0-GA version running on my machine Windows7 - 64 bit. When i access the server using localhost/127.0.0.1 it can be accessible, but if i mention my IP address(IPV4) then it is unavailable. I have followed the below solution, but is of no use:

run.bat -b 0.0.0.0

run.bat -b <<IP address>>

Could someone please get me out of this issue.

Upvotes: 0

Views: 638

Answers (2)

Jagadeesh
Jagadeesh

Reputation: 2800

Changing run.bat from

org.jboss.Main "-c" "default" 

to

org.jboss.Main -b0.0.0.0

has done the trick. But it forces you to create new profile for production exactly as it is the one like default.

Upvotes: 0

Nishant Modi
Nishant Modi

Reputation: 679

you can place your ip in place of 0.0.0.0 then you can access via your ip like run.bat -b 192.168.0.155

also make sure you have the entry in host file if using some of url to access jboss

Upvotes: 1

Related Questions