Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jboss Server Error:Server already running on localhost

I am working on web project where jboss application server is required. After configured the jboss server, I was running my application. It is showing error like:Server already running on local host.Web found a running server at URL //localhost:8080.enter image description here

like image 332
user1835080 Avatar asked Aug 20 '14 11:08

user1835080


1 Answers

Works for me

  • Open Command Prompt

  • Type netstat -noa and hit Enter

  • Check the "PID" of process that uses your port

  • And type taskkill /PID "PID number" and hit Enter

As @Mxsky stated: You may have to force the processus to quit with the /F option.So the command becomes: taskkill /PID pid_number /F

  • Done. Now start the server
like image 77
Süleyman Şahin Avatar answered Sep 22 '22 18:09

Süleyman Şahin