Notifications
Clear all

[Solved] Platform Instance - Address already in use:8080

3 Posts
2 Users
0 Reactions
1,050 Views
0
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
MythriPericharla 2014-02-11 10:02:00

Ah, didn't check the "UAT" part.

2 Answers
0
Topic starter

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.

0