系統服務

調整系統服務兩種方式:ide

1、ntsysv   相似圖形化界面spa

這種方式調整完後須要重啓系統生效it

2、chkconfigclass


查看系統服務列表grep

[root@wy ~]# chkconfig --listdi

abrt-ccpp       0:關閉 1:關閉 2:關閉 3:啓用 4:關閉 5:啓用 6:關閉文件

abrtd           0:關閉 1:關閉 2:關閉 3:啓用 4:關閉 5:啓用 6:關閉view

acpid           0:關閉 1:關閉 2:啓用 3:啓用 4:啓用 5:啓用 6:關閉vi

atd             0:關閉 1:關閉 2:關閉 3:關閉 4:啓用 5:啓用 6:關閉co


關閉某個服務

[root@wy ~]# chkconfig atd off

[root@wy ~]# chkconfig atd --list

atd             0:關閉 1:關閉 2:關閉 3:關閉 4:關閉 5:關閉 6:關閉

說明:on與off操做的是二、三、四、5這四個級別


對單個運行級別進行操做

[root@wy ~]# chkconfig --level 3 atd on

[root@wy ~]# chkconfig --list atd

atd             0:關閉 1:關閉 2:關閉 3:啓用 4:關閉 5:關閉 6:關閉


對多個運行級別進行操做

[root@wy ~]# chkconfig --level 345 atd on

[root@wy ~]# chkconfig --list atd

atd             0:關閉 1:關閉 2:關閉 3:啓用 4:啓用 5:啓用 6:關閉

說明:

        系統服務文件放在[root@wy ~]# ls -l /etc/init.d/


能夠自定義服務

[root@wy init.d]# cp atd 123

[root@wy init.d]# chkconfig --list | grep 123


添加到系統中

[root@wy init.d]# chkconfig --add 123

[root@wy init.d]# chkconfig --list | grep 123

123             0:關閉 1:關閉 2:關閉 3:啓用 4:啓用 5:啓用 6:關閉


刪除

[root@wy init.d]# chkconfig --del 123

[root@wy init.d]# chkconfig --list | grep 123

相關文章
相關標籤/搜索