linux系統查看全部服務的命令linux
之前用過這麼命令運行後能夠在linux系統查看全部服務的命令是什麼,有一個文本菜單,能夠很方面的選擇啓動或者中止服務,諸如ftp, ssh, telnet之類的可是我忘了那個命令叫什麼了,記得好像是sysconfig,可是如今系統裏沒有這個命令。ssh
這個命令就是「chkconfig --list」,下面咱們以查詢linux的httpd服務爲例,作下面的詳細介紹:.net
##查看服務在每一個級別的運行狀態rest
chkconfig --listget
httpd 0:關閉 1:關閉 2:關閉 3:關閉 4:關閉 5:啓用 6:關閉class
bluetooth 0:關閉 1:關閉 2:關閉 3:關閉 4:關閉 5:關閉 6:關閉ftp
#中止 HTTPD服務 www.2cto.com service
[root@zhangxx etc]# service httpd stopgrep
中止 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 在機器啓動的時候在運行級別上啓動 www.2cto.com
[root@zhangxx etc]# chkconfig --level 345 httpd on
[root@zhangxx etc]# chkconfig --list |grep httpd
httpd 0:關閉 1:關閉 2:關閉 3:啓用 4:啓用 5:啓用 6:關閉
[root@zhangxx etc]#