0

我想将tomcat 7配置为在windows 7上使用端口80,但似乎这个端口正在被另一个进程使用,以及如何解决这个问题而不给系统带来任何问题?

这是我得到的错误:

Port 80 required by Tomcat v7.0 Server at localhost is already in use. The server may already be running in another process, or a system process may be using the port. To start this server you will need to stop the other process or change the port number(s).
4

2 回答 2

3

出于经验,Skype 通常会阻止端口。希望对您有所帮助。

netstat -an |find /i "established"在这种情况下可以帮助你

于 2012-06-29T17:01:53.600 回答
0

在 cmd 中运行 netstat -ao ,您将获得正在使用的端口的 PID。

然后检查taskmgr,按PID排序,找到阻塞p80的程序。

作为个人说明:我打赌你已经启动并运行了 Skype,它喜欢阻塞端口 80

于 2012-06-29T17:01:36.730 回答