linux下chkconfig命令的使用

2021-05-28 04:41:57 字數 1512 閱讀 2917

chkconfig有五項功能:新增服務,刪除服務,列表服務,

改變啟動資訊以及檢查特定服務的啟動狀態

使用語法

usage:  chkconfig --list [name]

chkconfig --add

chkconfig --del

chkconfig [--level ]

chkconfig --list 列出當前服務在各個run leves的設定狀態。

# chkconfig --list

networkmanager  0:off   1:off   2:off   3:off   4:off   5:off   6:off

networkmanagerdispatcher        0:off   1:off   2:off   3:off   4:off   5:off   6:off

acpid           0:off   1:off   2:off   3:on    4:on    5:on    6:off

anacron         0:off   1:off   2:on    3:on    4:on    5:on    6:off

apmd            0:off   1:off   2:on    3:on    4:on    5:on    6:off

atd             0:off   1:off   2:off   3:on    4:on    5:on    6:off

auditd          0:off   1:off   2:on    3:on    4:on    5:on    6:off

......

如果想要啟動httpd服務,首先檢視httpd的狀態。

# chkconfig httpd off 關閉服務

# chkconfig httpd on  開啟服務

也可以選擇 level 開啟服務

chkconfig 檢視幫助

# man chkconfig

chkconfig 235 56 34(也可能是其他數字組合)

就以chkconfig 235 56 34為例,235表示該啟動指令碼對應的服務將在系統啟動級別2, 3, 5級啟動。而56表示其啟動優先順序為56,所謂的優先順序,就是在rc指令碼中出現在各個符號鏈結名中的數字。而34就是終止優先順序。

原文:

Linux下chkconfig命令詳解

chkconfig命令主要用來更新 啟動或停止 和查詢系統服務的執行級資訊。謹記chkconfig不是立即自動禁止或啟用乙個服務,它只是簡單的改變了符號連線。使用語法 chkconfig add del list 系統服務 或 chkconfig level 等級代號 系統服務 on off res...

Linux下chkconfig命令詳解

chkconfig命令主要用來更新 啟動或停止 和查詢系統服務的執行級資訊。謹記chkconfig不是立即自動禁止或啟用乙個服務,它只是簡單的改變了符號連線。使用語法 chkconfig add del list 系統服務 或 chkconfig level 等級代號 系統服務 on off res...

linux命令學習 chkconfig

1.chkconfig 命令用法 chkconfig list name 檢視服務 chkconfig add 增加服務 chkconfig del 刪除服務 chkconfig level 設定服務啟動方式 chkconfig help 幫助資訊 2.chkconfig 示例 檢視服務 chkco...