Reputation: 1154
I am trying to start a JBoss Wildfly Application server in AWS Linux. As you can see in the log given below, the application server is started and it is listening in port 8080.
I got a descent response when I tried to curl to http://localhost:8080/ from the same machine.
But while trying to access it from my laptop using the IPv4 Public IP it failed to connect throwing an error "refused to connect".
Given below are my security group settings.
Can anyone tell me what could be the possible reasons for this? Some people say that along with the security group settings, the firewall needs to be opened for this port too. But I am not sure how to do that as I am pretty new to AWS.
####UPDATEI started a Tomcate server on the same instance and it is accessible outsite. So is that something to do with the Wildfly?
Upvotes: 0
Views: 7547
Reputation: 36
Try binding all IP addresses to the wildfly as below ./standalone.sh -b 0.0.0.0
Upvotes: 1
Reputation: 144
Here are few tips to check issue.
Hope above steps help you to troubleshoot the problem.
Upvotes: 0