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
共有 0 条评论