如何关闭
1.查找端口占用的进程;
2.使用netstat -antp | grep 9000命令来查看(以查看9000端口为例):
3.可以看到哪个 PID 的进程占用了这个端口;
4.然后停止相应的进程即可。
常用的 netstat 命令
netstat -n -p | grep SYN_REC | sort -u 列出所有连接过的 IP 地址。
netstat -n -p | grep SYN_REC | awk ‘{print $5}’ | awk -F: ‘{print $1}’ 列出所有发送 SYN_REC 连接节点的 IP 地址。
netstat -ntu | awk ‘{print $5}’ | cut -d: -f1 | sort | uniq -c | sort -n 计算每个主机连接到本机的连接数。
netstat -plan|grep :80|awk {‘print $5’}|cut -d: -f 1|sort|uniq -c|sort -nk 1 列出所有连接到本机 80 端口的 IP 地址及其连接数。80 端口一般是用来处理 HTTP 网页请求。
以上是关于如何关闭https://www.west.cn/cloudhost/