- 一、windows
- 1、根据端口号查看进程号
- 2、根据进程号查看服务名
- 3、根据进程号杀掉进程
- 二、Linux
- 1、根据端口号查进程pid
- 2、根据进程号查端口
- 3、根据进程pid查看服务路径
netstat -ano | find "8080" // 或者 netstat -ano | findstr 8080 // 或者 netstat -a -n -o | findstr 8080
注意:netstat -ano后不接其他,则查所有服务的端口和进程号等信息
tasklist | find "11476" // 或者 tasklist | findstr 114763、根据进程号杀掉进程
方式一:
taskkill /t /f /pid 11476
方式二:
taskkill /pid 5528 -t -f
注意:’-t -f ’ 和 ‘-pid’ 可调换位置,’-’ 可换成 ‘/’ 。
lsof -i:port
netstat -nap|grep port2、根据进程号查端口
netstat -nap|grep pid3、根据进程pid查看服务路径
3.1 查看进程pid
ps -ef|grep java
3.2 查看服务安装路径
ll /proc/128303/cwd
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)