linux怎么关闭端口
1.用下面命令
netstat -anp |grep 端口
找出占用这个端口的进程,
2.用下面命令
kill -9 PID
杀掉就行了
示例如下:
输入命令
netstat -anp | grep ssh
查看打开端口的进程。
找到你要关闭的端口对应的进程,
输入kill -9 端口号的命令来关闭进程和端口。
linux怎么关闭端口
1.用下面命令
netstat -anp |grep 端口
找出占用这个端口的进程,
2.用下面命令
kill -9 PID
杀掉就行了
示例如下:
输入命令
netstat -anp | grep ssh
查看打开端口的进程。
找到你要关闭的端口对应的进程,
输入kill -9 端口号的命令来关闭进程和端口。