> CentOS > CentOS入门 >

CentOS下进程与端口号的查询

1.根据名称查进程:
标准格式显示:

ps -ef | grep xxx
BSD格式显示:

ps -aux | grep xxx
2.根据进程pid查端口号port:

netstat -nlp | grep pid
3.根据端口号port查进程pid:

netstat -nlp | grep port


lsof -i:port



(责任编辑:IT)