1

I'm working on a web project where JBoss Application Server is used for deployment. I'm getting the below message once I start the server.

An application server may already be running on host localhost

Web Poller found a running server at url http://localhost:8080

I couldn't find any entries on netstat command on process which uses port 8080.

Tried the solution mentioned in this question as well.

Community
  • 1
  • 1
AvenashKrish
  • 343
  • 2
  • 6
  • 20
  • 4
    Here are working and detailled answers for your question: http://stackoverflow.com/questions/25403012/jboss-server-errorserver-already-running-on-localhost – Mxsky Apr 21 '16 at 07:48

2 Answers2

5

For Linux

Try below

 ps -ef|grep jboss

now if jboss running it will return pid take that pid and run below command

kill -9 pid

For Windows

ALT+CTRL+DELETE

and start task manager & then search for javaw.exe service and close it

Subodh Joshi
  • 12,717
  • 29
  • 108
  • 202
0

The Port is under listenning by a JVM, you should look for the entries of JVM in the result of your netstat command.

Hamza Jabbour
  • 474
  • 4
  • 7
  • 1
    Please explain how the OP can do what you have described. You basically said "If you want to sit, build a chair" without explaining what a chair is, or how to build one. – Tschallacka Jul 20 '15 at 13:23