如何查看进程/服务是否启动
Posted liuge36
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何查看进程/服务是否启动相关的知识,希望对你有一定的参考价值。
在linux下我们一般是需要了解我们的进程的状态的.
我们以mysql为例
service mysqld status
[[email protected]_57_70_centos ~]# service mysqld status;
mysqld (pid 17239) is running...
[[email protected]_57_70_centos ~]#
我这里是启动状态,可以看见pid
chkconfig --list +你的服务
[[email protected]_57_70_centos ~]# chkconfig --list mysqld;
mysqld 0:off 1:off 2:on 3:on 4:on 5:on 6:off
[[email protected]_57_70_centos ~]#
可以看见是启动的,有on状态
pidof +你的服务
[[email protected]_57_70_centos ~]# pidof mysqld
17239
[[email protected]_57_70_centos ~]#
可以看见pid,说明,此时,mysql服务正在运行,如果没有运行的话,是没有输出的
ps -ef | grep +你的服务
可以通过netstat -tanp查看
如果有的话,上面也是会有mysql这一条的
好了,上面简单介绍了几种常用的方式来查看进程,选择一种你喜欢的就好
以上是关于如何查看进程/服务是否启动的主要内容,如果未能解决你的问题,请参考以下文章