Marco Nie - 端口 https://blog.niekun.net/tag/%E7%AB%AF%E5%8F%A3/ zh-CN Thu, 13 Feb 2020 16:53:00 +0800 Thu, 13 Feb 2020 16:53:00 +0800 Windows 查询端口被哪个程序占用 https://blog.niekun.net/archives/922.html https://blog.niekun.net/archives/922.html Thu, 13 Feb 2020 16:53:00 +0800 admin 调试远程控制的时候,发现 3389 端口被占用了,需要查询到哪个程序占用了此端口。

Linux 查看端口占用参考:https://niekun.net/index.php/archives/430.html

使用命令如下:

# 显示所有端口情况
netstat -ano

# 显示某个端口的占用情况 返回的数据中最后的数字为 PID 号
netstat -aon|findstr "7200"

# 根据 PID 号结束对应进程
taskkill /f /pid  7200
]]>
0 https://blog.niekun.net/archives/922.html#comments https://blog.niekun.net/feed/tag/%E7%AB%AF%E5%8F%A3/archives/922.html
Linux 后台程序/端口占用查看及关闭 https://blog.niekun.net/archives/430.html https://blog.niekun.net/archives/430.html Wed, 16 Oct 2019 16:10:00 +0800 admin ps

查看当前所有后台进程:

ps -aux

2019-10-16T08:08:10.png

查看某个脚本进程:

ps -aux | grep "test.sh"

kill

关闭进程,通过ps命令查看进程号PID,然后执行:

kill %PID

lsof

查看当前端口是否被某个进程占用:

lsof -i:8000

Windows 查看端口占用参考:https://niekun.net/index.php/archives/922.html

]]>
0 https://blog.niekun.net/archives/430.html#comments https://blog.niekun.net/feed/tag/%E7%AB%AF%E5%8F%A3/archives/430.html