如何列出由 System V init 脚本启动的实例上运行的服务?
我尝试运行“service | --status-all>”,但没有成功。
答案1
原因很简单。没有命令/函数调用--status-all
:
$ service | --status-all
Usage: service < option > | --status-all | [ service_name [ command | --full-restart ] ]
--status-all: command not found
在用法中,bar|
表示OR
。因此,用法告诉您使用以下任一方式:
service <option>
:这里的选项有start
,,stop
等等。service --status-all
:为您提供支持状态的所有服务的状态列表。service service_name command
:服务名称显然是init中任意服务的名称,命令是start
,,,stop
等等restart
。service service_name --full-restart
:调用stop
命令,然后调用start
命令。