OpenBSD rcctl

rcctl是OpenBSD系统上的后台进程(daemon)管理程序,功能上类似于以前RedHat Linux上的chkconfig或新版中的systemctl。

1
2
3
4
5
6
7
8
9
10
rcctl enable httpd
rcctl disable httpd
rcctl start httpd
rcctl stop httpd
rcctl get httpd
rcctl getdef httpd
rcctl order d
rcctl order d0 d1 d2
rcctl set httpd status on
rcctl set ntpd flags -s
1
2
3
4
5
6
all      all services and daemons  ## 所有的服务和进程
faulty enabled but stopped daemons ## 启用但未能启动的服务和进程
off disabled services and daemons ## 禁用的服务和进程
on enabled services and daemons ## 启用的服务和进程
started running daemons ## 已经启动的进程
stopped stopped daemons ## 已经停止的进程