当前位置: 技术问答>linux和unix
[求助]查看监听端口所属进程问题
来源: 互联网 发布时间:2016-11-23
本文导语: 按照网上的方法,但是rmsock时候出现了问题: % netstat -Aan |grep 32776 f100060000d0a398 tcp4 0 0 *.32776 *.* LISTEN % rmsock f100060000d0a398 tcpcb rmsock : Unable to read ke...
按照网上的方法,但是rmsock时候出现了问题:
% netstat -Aan |grep 32776
f100060000d0a398 tcp4 0 0 *.32776 *.* LISTEN
% rmsock f100060000d0a398 tcpcb
rmsock : Unable to read kernel address f100060000d0a398, errno = 13
rmsock : Unable to read kernel address 0000000000000000, errno = 13
It is not a socket
是什么原因啊,怎么才能查到监听端口所属的进程名啊
% netstat -Aan |grep 32776
f100060000d0a398 tcp4 0 0 *.32776 *.* LISTEN
% rmsock f100060000d0a398 tcpcb
rmsock : Unable to read kernel address f100060000d0a398, errno = 13
rmsock : Unable to read kernel address 0000000000000000, errno = 13
It is not a socket
是什么原因啊,怎么才能查到监听端口所属的进程名啊
|
执行rmsock命令需要root权限
命令会报告该端口正在被哪个进程使用,以及PID
可以借助于lsof 工具
不知道你的系统中安装了没有
lsof -i|grep 端口号
命令会报告该端口正在被哪个进程使用,以及PID
可以借助于lsof 工具
不知道你的系统中安装了没有
lsof -i|grep 端口号
|
netstat -lanp