文章目录
netstat -alntp | grep 80
netstat -anp |grep 3306
Linux端口放行与取消:
https://blog.csdn.net/c_chuxue/article/details/103865685
1.查看进程:
ps –ef | grep java
2.根据进程查看pid:
lsof -i | grep 31081
java表示项目运行类型,31081表示进程号,root表示用户名,后面表示端口号
3.根据端口查进程:
lsof -i :3306
4.根据用户查看进程和端口:
lsof -i | grep root
5.netstat命令根据进程pid查端口:
netstat -nap | grep pid
6.根据端口port查进程
netstat -nap | grep port
7.查看所有TCP端口
[root@zht ~]# netstat -ntlp
8.查看所有****端口
[root@zht ~]# netstat -ntulp | grep 8088
tcp6 0 0 :::8088 :::* LISTEN 23147/./wstack-meta
9.查看服务器上所有的服务跟端口
[root@zht ~]# netstat -anlp
10.查看某服务占用的端口情况,比如:nginx
[root@zht ~]# netstat -ntulp | grep nginx
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 4504/nginx: master
11.查看指定端口的连接数量,比如:80
[root@zht ~]# netstat -pnt |grep :80 |wc
17 119 1717