Reputation: 302
I have a very odd problem with netbeans 7. I am working on an application using JSF2.2 and Tomcat7.0.34 server. Uptill now everything was working fine but today when I start tomcat from netbeans IDE it shows in log a successful start up but keeps on saying starting tomcat in status bar. I can access tomcat from "loclhost:8080" and if I manually start tomcat then go to the IDE and start the service it says port 8080 is already in use.
Upvotes: 1
Views: 130
Reputation: 17839
This is a common problem when trying to startup a service and another task uses the same port. Make sure you have not installed another Tomcat or any other server that listens on this port (8080).
If in windows issuing the command netstat -a -b -o
will give you a list of open ports on your pc. Check and fing the port and which program is using it
Upvotes: 1