0%

Linux进程端口互查

Linux下通过进程名查看进程id pid

1
ps -ef | grep QuorumPeerMain

通过netstat, pid和port可以互查。

p - pid
n - numeric
a - all

1
netstat -anp | grep [pid/port]