centos 7中關於服務管理相關變化
阿新 • • 發佈:2018-12-03
剛剛使用centos 7的時候,多數朋友會用的不是很順手,儘管多了許多神乎其神的功能,但是對於基礎的服務管理與網路管理方面的變化,還是讓人褒貶不一。在centos7中,chkconfig與service命令沒有之前那麼好用,取而代之的是systemctl命令,這個強大的命令是一個系統管理守護程序、工具和庫的集合。
任務 | 舊命令 | 新命令 |
使某服務自動啟動 | chkconfig httpd on | systemctl enable httpd.service |
使某服務不自動啟動 | chkconfig httpd off | systemctl disable httpd.service |
檢查服務狀態 | service httpd status | systemctl status httpd.service |
啟動某服務 | service httpd start | systemctl start httpd.service |
停止某服務 | service httpd stop | systemctl stop httpd.service |
重啟某服務 | service httpd restart | systemctl restart httpd.service |
顯示所有已啟動的服務 | chkconfig –list | systemctl list-unit-files|grep enabled |