Jboss Server Error:Server already running on localhost

后端 未结 6 1754
说谎
说谎 2020-12-13 16:27

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 alre

6条回答
  •  情歌与酒
    2020-12-13 16:56

    What Süleyman Şahin said was right. 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

    However, if you are unable to kill the process in the cmd, check for the PID that is using port 8080. In the command prompt, [::]8080 it will look like this. Now, goto the Task Manager in the Details tab check for the PID and right click on the name of the service and click Go to service(s). Now stop that service that is using port 8080.

    Now, open the eclipse and start the JBoss. That's it.

提交回复
热议问题