我正在运行 centos 5.8 并试图确定正在运行的守护进程。
我以 root 用户身份登录,但是当我输入service --status-all
或chkconfig --list
得到bash: service: command not found
.
如何确定正在运行的守护进程?
我正在运行 centos 5.8 并试图确定正在运行的守护进程。
我以 root 用户身份登录,但是当我输入service --status-all
或chkconfig --list
得到bash: service: command not found
.
如何确定正在运行的守护进程?
该
service --status-all
命令将执行您想要的操作。根据bash: service: command not found
错误,听起来好像/sbin
不在您的$PATH
. 添加并重试:export PATH=$PATH:/sbin
首先,尝试
/sbin/service --status-all
;您可能只是$PATH
通过su
而不是su -
.其次,
ps
还可以给你有用的信息,一样可以netstat -ln
。