当前位置:   article > 正文

SHELL 002 -- ps命令常用方法

ps -usr2 fpmmasterpid
1.查看服务进程号/查看服务是否正常运行
   ps -ef|grep   服务名 |grep -v grep
   eg:
  1. [root@LNP]~# ps -ef|grep php-fpm|grep -v grep
  2. nginx 1682 1681 0 17:16 ? 00:00:00 php-fpm: pool www
  3. nginx 1683 1681 0 17:16 ? 00:00:00 php-fpm: pool www
  4. nginx 1684 1681 0 17:16 ? 00:00:00 php-fpm: pool www
  5. nginx 1685 1681 0 17:16 ? 00:00:00 php-fpm: pool www
  6. nginx 1686 1681 0 17:16 ? 00:00:00 php-fpm: pool www
  7. nginx 1687 1681 0 17:16 ? 00:00:00 php-fpm: pool www
  8. nginx 1688 1681 0 17:16 ? 00:00:00 php-fpm: pool www
  9. nginx 1689 1681 0 17:16 ? 00:00:00 php-fpm: pool www
  10. nginx 1690 1681 0 17:16 ? 00:00:00 php-fpm: pool www
  11. nginx 1691 1681 0 17:16 ? 00:00:00 php-fpm: pool www
  12. nginx 1692 1681 0 17:16 ? 00:00:00 php-fpm: pool www
  13. nginx 1693 1681 0 17:16 ? 00:00:00 php-fpm: pool www
  14. nginx 1694 1681 0 17:16 ? 00:00:00 php-fpm: pool www
  15. nginx 1695 1681 0 17:16 ? 00:00:00 php-fpm: pool www
  16. nginx 1696 1681 0 17:16 ? 00:00:00 php-fpm: pool www
  17. nginx 1697 1681 0 17:16 ? 00:00:00 php-fpm: pool www
  18. root 1722 1 0 17:17 ? 00:00:00 nginx: master process /application/nginx/sbin/nginx
  19. nginx 1797 1722 0 17:19 ? 00:00:00 nginx: worker process
   第二列表示服务进程号 , 第三列表示 父进程号

2.查看所有进程或指定进程CPU占比、内存占、当前状态等详细信息
   ps aux
   ps aux|grep   服务名 |grep -v grep
   eg:
  1. [root@LNP]~# ps aux
  2. USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
  3. root 1 0.0 0.1 19344 1552 ? Ss 17:14 0:01 /sbin/init
  4. root 2 0.0 0.0 0 0 ? S 17:14 0:00 [kthreadd]
  5. root 3 0.0 0.0 0 0 ? S 17:14 0:00 [migration/0]
  6. root 4 0.0 0.0 0 0 ? S 17:14 0:00 [ksoftirqd/0]
  7. root 5 0.0 0.0 0 0 ? S 17:14 0:00 [stopper/0]
  8. root 6 0.0 0.0 0 0 ? S 17:14 0:00 [watchdog/0]
  9. root 7 0.1 0.0 0 0 ? S 17:14 0:17 [events/0]
  10. root 8 0.0 0.0 0 0 ? S 17:14 0:00 [events/0]
  11. root 9 0.0 0.0 0 0 ? S 17:14 0:00 [events_long/0]
  12. [root@LNP]~# ps aux |grep crond|grep -v grep
  13. root 1576 0.0 0.1 116868 1268 ? Ss 17:14 0:00 crond
   USER:进程属主
   PID :进程ID号
   %CPU:进程使用CPU百分比
   %MEM:进程物理内存百分比
   VSZ :进程使用虚拟内存量 (Kbytes)
   RSS :进程占用固定内存量 (Kbytes)
   TTY :进程运行终端 ,常见显示:
         进程运行与终端无关,显示 ?
         本机登入者程序,显示tty1-tty6 
         由网络连接进主机程序,显示 pts/0 等
   STAT:程序目前的状态,常见状态:
         R 正在运作或可被运行
         S 睡眠中可被唤醒
         T 侦测状态或停止
         Z 终止状态,父程序继续运行
   START:进程被触发启动时间
   TIME :进程实际使用 CPU 运行时间
   COMMAND:进程的对应指令


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/185027
推荐阅读
相关标签
  

闽ICP备14008679号