1、linux查看pid关联的进程
ps -aux |grep -v grep|grep pid进程id
ps -aux |grep -v grep|grep 28990(pid)
2、
linux查看端口占用情况
lsof -i:端口号 用于查看某一端口的占用情况,比如查看8000端口使用情况,lsof -i:8000
3、netstat -tunlp |grep 端口号,用于查看指定的端口号的进程情况,如查看8000端口的情况,netstat -tunlp |grep 8000
1、linux查看pid关联的进程
ps -aux |grep -v grep|grep pid进程id
ps -aux |grep -v grep|grep 28990(pid)
2、
linux查看端口占用情况
lsof -i:端口号 用于查看某一端口的占用情况,比如查看8000端口使用情况,lsof -i:8000
3、netstat -tunlp |grep 端口号,用于查看指定的端口号的进程情况,如查看8000端口的情况,netstat -tunlp |grep 8000