Centos7进程管理

来自linux中国网wiki
跳到导航 跳到搜索


ptree
-c:如果想要取消折叠(compact)功能的话,可使用该选项。



sudo pgrep  nginx 


可通过命令结果引用显示对应的进程信息。
复制代码

 sudo ps $(pgrep  nginx)
    PID TTY      STAT   TIME COMMAND
    736 ?        Ss     0:00 nginx: master process /usr/sbin/nginx -g daemon on; master_process on;
    737 ?        S      0:00 nginx: worker process


pidof

返回进程的PID。



CentOS 7上的进程管理