2014-02-11 10:02:00
Topic starter
My UAT server is not working. I have restarted it and cleared the logs to open up disk space but it still has the error:
java.net.BindException: Address already in use:8080
The problem is that
./plt_server stop
is not cleaning up all this instances of JBOSS. So an old instance of JBOSS is still running and occupying the port. We can see these processses by running
ps ax | grep jboss
Stop the process id's that the above command shows with
kill YOUR_PID
Now you can start platform normally.