问题描述
我正在尝试将端口80用于我的应用服务器,但当我执行 netstat -aon
时,我得到:
I am trying to use port 80 for my application server, but when I perform netstat -aon
I get:
当我在任务管理器中查找过程时,它显示 PID 4
是 SYSTEM
,就是这样。没有延期......没什么。只是 SYSTEM
。这里发生了什么?
When I look up the process in task manager, it shows PID 4
is SYSTEM
, that's it. No extension... nothing. Just "SYSTEM
". What's going on here?
我害怕结束这个过程,我该怎么办?
I'm afraid to end this process, what do I do?
UPDATE :
我通过,它有解决方案来获取IIS停止在端口80上侦听指定的IP地址。
I've solved this through another Stack Overflow question, which had the solution to get IIS to stop listening on port 80 for a specified IP address.
推荐答案
IP地址为0.0.0.0,state = LISTENING:表示端口80正在侦听所有接口(未使用)
the IP adress is 0.0.0.0, state = LISTENING: means that port 80 is listening to all interfaces (not used)
- https://sites.google.com/site/xiangyangsite/home/technical-tips/linux-unix/networks-related-commands-on-linux/how-to-read-netstat--an-results
这篇关于SYSTEM(PID 4)正在使用端口80,那是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!