Reputation: 115
I am new to Java EE concepts and the JBoss server. I have developed a simple Enterprise application. I started the server using a command prompt but the moment I tried to deploy it from Netbeans the JBoss Application Server start failed:
HTTP Connector port 8080 is already in use
is displayed on the output.
So how can I deploy it?
Upvotes: 0
Views: 2415
Reputation: 11
You can find the application that use port 8080 by tapping the netstat on command prompt. Then kill the application by his PID : **taskkill /PID number that represent the PID**
of the application. Or download TCP viewer to see the application that uses the port 8080. then end the process, then try to start your JBoss
Upvotes: 0
Reputation: 13220
Your IDE will start the JBoss server but it seems you already started from console therefore port is in use. Shut down it from console and try it only from your IDE. IDE will start it by itself.
Upvotes: 1