如何查看端口被占用并终止进程Linux&Windows
2024-07-25 10:09:43 0 举报
AI智能生成
如何查看端口被占用并终止进程windows&linux
作者其他创作
大纲/内容
方法一、# 查找监听端口8080的进程ss -tuln | grep 8080 # 查找到特定端口8080的网络连接ss -tun state established | grep 8080
方法二[root@iZ2zeb3tq9v0wyicra3wwuZ webapps]# netstat -ano #查看所有进程[root@iZ2zeb3tq9v0wyicra3wwuZ webapps]# netstat -nlp | grep 8080 #查看占用8080端口的进程tcp 0 0 0.0.0.0:8080 0.0.0.0:* LISTEN 32036/jsvc.exec [root@iZ2zeb3tq9v0wyicra3wwuZ webapps]# sudo kill -9 32036 #kill 掉这个进程
linux环境
查看端口占用情况
netstat -ano | findstr 8080
终止端口所在的进程
taskkill -pid 14572 -f
windows环境
如何查看端口被占用并终止进程
0 条评论
回复 删除
下一页