ps : report a snapshot of the current processes.
To see every process on the system using standard syntax: ps -ef
To see every process on the system using BSD syntax: ps ax
Q1: ps ax | grep kafka 信息过长
ps -ef|grep kafka解决方法: 指定列的长度 ps -ef --columns=300 | grep kafka
Q2: 如何筛选出指定进程状态的进程?
man ps解决方法: ps ax | grep -w Z 找出僵尸状态的进程 (-w 寻找指定的单词)
网友评论