Figured the issue, Jboss was running on the same VM at the same port which was causing “Address already in use” error.
lsof -n -i :80 | grep LISTEN -> command to find the pid running on port 8080
ps -ef | grep pid ->to see what is running on the specified pid.
CLICK HERE to find out more related problems solutions.