Linux 檢視服務列表命令:
這個命令就是"chkconfig --list",下面我們以查詢linux的httpd服務為例,做下面的詳細介紹:
##檢視服務在每個級別的執行狀態
chkconfig --list
httpd 0:關閉 1:關閉 2:關閉 3:關閉 4:關閉 5:啟用 6:關閉
bluetooth 0:關閉 1:關閉 2:關閉 3:關閉 4:關閉 5:關閉 6:關閉
#停止 HTTPD服務
[root@zhangxx etc]# service httpd stop
停止 httpd:[ 確定 ]
#啟動httpd服務
[root@zhangxx etc]# service httpd start
啟動 httpd:[ 確定 ]
#重起HTTD服務
[root@zhangxx etc]# service httpd restart
停止 httpd:[ 確定 ]
啟動 httpd:[ 確定 ]
#讓httpd 在機器啟動的時候在執行級別上停止
[root@zhangxx etc]# chkconfig --level 345 httpd off
[root@zhangxx etc]# chkconfig --list |grep httpd
httpd 0:關閉 1:關閉 2:關閉 3:關閉 4:關閉 5:關閉 6:關閉
#讓httpd 在機器啟動的時候在執行級別上啟動
[root@zhangxx etc]# chkconfig --level 345 httpd on
[root@zhangxx etc]# chkconfig --list |grep httpd
httpd 0:關閉 1:關閉 2:關閉 3:啟用 4:啟用 5:啟用 6:關閉