Linux系统查看进程和端口的常用方法

查看进程
方法一
ps -ef|grep 进程名称
举例(查看nginx服务的进程是否启动)

[root@20220207 ~]# ps -ef|grep nginx root       6071   6052  0 08:35 ?        00:00:00 nginx: master process nginx -g daemon off; 101        6122   6071  0 08:35 ?        00:00:00 nginx: worker process root      12044  11999  0 10:21 pts/0    00:00:00 grep --color=auto nginx

方法二
ps aux|grep 进程名称
举例

[root@20220207 ~]# ps aux|grep nginx root       6071  0.0  0.1   8840  3488 ?        Ss   08:35   0:00 nginx: master

Linux系统查看进程和端口的常用方法最先出现在Python成神之路

版权声明:
作者:admin
链接:https://www.techfm.club/p/24391.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>