linux命令查看端口占用

Linux下查看80端口是否被占用

1.ps -ef |grep 80

2.netstat -anp |grep :80

3.lsof -i:80

4.netstat -tunlp |grep :80

5.netstat -an |grep :80

猜你喜欢

转载自blog.csdn.net/u010918487/article/details/81947629