linux下查看所有监听端口

1.检查所有监听端口

#netstat -tln | awk ‘NR>2{sub(“.*:”,“”,$4);print $4}’

2.检查所有监听端口并排序去重

#netstat -tln | awk ‘NR>2{sub(“.*:”,“”,$4);print $4}’ | sort | uniq

lsof -i:端口号 用于查看某一端口的占用情况,
比如查看9501端口使用情况,lsof -i:9501

netstat -tunlp |grep 端口号,用于查看指定的端口号的进程情况
如查看9501端口的情况,netstat -tunlp |grep 9501

1、通过"netstat -anp" 来查看哪些端口被打开。

关掉对应的应用程序,则端口就自然关闭了,如:“kill -9 PID” (PID:进程号)

linux下查看监听端口对应的进程
1.通过lsof命令查看PID
ipv4
[root@test proc]# lsof -Pnl +M -i4
lsof -Pnl +M -i6

2.通过ps命令查看进程情况
[root@test proc]# ps -ef|grep 12886

2.使用ps查看进程情况
[root@test 12886]# ps -ef|grep 12886

一、防火墙的相关命令
systemctl start firewalld
systemctl stop firewalld
systemctl enble firewalld
firewall-cmd --add-port=3306/tcp --permanent
firewall-cmd --reload
firewall-cmd --zone=public --list-ports

二、查看端口的相关命令
netstat -ntlp
netstat -ntlp | grep 3306
kill -9 10086

  • 0
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

android framework

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值