根据进程查询端口:
netstat -anp|grep pid
lsof -i | grep pid
根据端口查询进程
netstat -anp|grep port
根据进程查询应用目录:
ll /proc/pid
2021-11-30 15:44:40
根据进程查询端口:
netstat -anp|grep pid
根据端口查询进程
netstat -anp|grep port
根据进程查询应用目录:
ll /proc/pid
下一篇:Linux系统管理技巧(1)