Guest User

Untitled

a guest
Oct 18th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. # ps -ax | grep nginx
  2. 22546 ? Ss 0:00 nginx: master process /usr/sbin/nginx
  3. 22953 pts/2 S+ 0:00 grep nginx
  4. 29419 ? Ss 0:00 nginx: master process /usr/sbin/nginx -c /etc/nginx/nginx.conf
  5. 29420 ? S 1:59 nginx: worker process
  6. 29421 ? S 1:54 nginx: worker process
  7. 29422 ? S 1:56 nginx: worker process
  8. 29423 ? S 1:49 nginx: worker process
  9. 29425 ? S 0:09 nginx: cache manager process
  10. 30796 ? S 1:49 nginx: worker process
  11.  
  12. kill 22546; kill 22953; kill ...
  13.  
  14. # ps -ax | grep node | cut -d' ' -f1 |
  15. 22546
  16. 24582
  17. 29419
  18. 29420
  19. 29421
  20. 29422
  21. 29423
  22. 29425
  23. 30796
Add Comment
Please, Sign In to add comment