Reputation: 3
I have deployed jboss-4.2.3 on an EC2 instance. I have added appropriate rule to open port 8080 for inbound traffic. When I ssh into this instance and do curl localhost:8080, the expected response can be seen
But when I try to access it in a browser on my laptop, am unable to connect. Few other things I have tried to eliminate other possibilities
Any guidance is highly appreciated
Upvotes: 0
Views: 1449
Reputation: 1
I was struggling with the same issue.
You need to open up port 8080 in the Security Groups as Wildfly is using it. Then you should be able to access the page.
Upvotes: 0
Reputation: 23512
Bind your jboss to all IP addresses as below:
./run.sh -b 0.0.0.0
Upvotes: 4