使用systemctl命令可以控**務,service命令和chkconfig命令依然可以使用,但是主要是出於相容的原因,應該盡量避免使用。
使用systemctl命令的時候,服務名字的副檔名可以寫全,例如:
systemctl stop name.service
也可以忽略:
systemctl stop name
啟動服務
systemctl start name.service
關閉服務
systemctl stop name.service
重啟服務
systemctl restar tname.service
僅當服務執行的時候,重啟服務
systemctl try-restart name.service
systemctl relaod name.service
檢查服務運作狀態
systemctl status name.service
或者
systemctl is-active name.service
展示所有服務狀態詳細資訊
systemctl list-units --type service --all
允許服務開機啟動
systemctl enable name.service
禁止服務開機啟動
systemctl disable name.service
檢查服務開機啟動狀態
systemctl status name.service
或者
systemctl is-enabled name.service
列出所有服務並且檢查是否開機啟動
systemctl list-unit-files --type service
使用如下命令列出服務:
systemctl list-units --type service
systemctl list-units --type service --all
有時候希望看到所以可以設定開機啟動的服務,使用如下命令:
systemctl list-unit-files --type service
檢視服務詳細資訊,使用如下命令:
systemctl status name.service
CentOS7系統服務管理systemctl
發部落格的時候要注意,word有可能會把文中兩個減號 轉換成中文的 文中本就應該存在 如果有,那一定是被轉換了。centos7啟用了新的系統和服務管理器,採用systemctl命令代替了老版本的service和chkconfig。為了保持相容性,在centos7中,老版本的service和chkco...
linux系統中命令
1 ls 使用許可權 所有使用者 使用方式 ls alrtafr name.說明 顯示指定工作目錄下之內容 列出目前工作目錄所含之檔案及子目錄 a 顯示所有檔案及目錄 ls內定將檔名或目錄名稱開頭為 的視為隱藏檔,不會列出 l 除檔名稱外,亦將檔案型態 許可權 擁有者 檔案大小等資訊詳細列出 r 將...
LInux中系統命令
1 關機命令 shutdown 命令格式 shutdown 選項 時間 選項 c 取消關機命令 r 重啟 h 關機 案例 root localhost shutdown r now 重啟,now是現在重啟的意思 root localhost shutdown r 00 30 指定時間重啟,占用前台終...