CentOS7中systemctl命令詳解
Linux Systemctl是一個系統管理守護程式、工具和庫的集合,用於取代System V、service和chkconfig命令,初始程式主要負責控制systemd系統和服務管理器。透過Systemctl –help可以看到該命令主要分為:查詢或傳送控制命令給systemd服務,管理單元服務的命令,服務檔案的相關命令,任務、環境、快照相關命令,systemd服務的配置過載,系統開機關機相關的命令。
1. 列出所有可用單元
systemctl list-unit-files
2. 列出所有執行中單元
systemctl list-units
3. 列出所有失敗單元
systemctl –failed
4. 檢查某個單元(如 crond.service)是否啟用
systemctl is-enabled crond.service
5. 列出所有服務
systemctl list-unit-files –type=service
6. Linux中如何啟動、重啟、停止、過載服務以及檢查服務(如 httpd.service)狀態
systemctl start httpd.service
systemctl restart httpd.service
systemctl stop httpd.service
systemctl reload httpd.service
systemctl status httpd.service
注意:當我們使用systemctl的start,restart,stop和reload命令時,終端不會輸出任何內容,只有status命令可以列印輸出。
7. 如何啟用服務並在開機時啟用或禁用服務(即系統啟動時自動啟動mysql.service服務)
systemctl is-active mysql.service
systemctl enable mysql.service
systemctl disable mysql.service
8. 如何遮蔽(讓它不能啟動)或顯示服務(如ntpdate.service)
systemctl mask ntpdate.service
ln -s /dev/null /etc/systemd/system/ntpdate.service
systemctl unmask ntpdate.service
rm /etc/systemd/system/ntpdate.service
9. 使用systemctl命令殺死服務
systemctl kill crond
10. 列出所有系統掛載點
systemctl list-unit-files –type=mount
11. 掛載、解除安裝、重新掛載、過載系統掛載點並檢查系統中掛載點狀態
systemctl start tmp.mount
systemctl stop tmp.mount
systemctl restart tmp.mount
systemctl reload tmp.mount
systemctl status tmp.mount
12. 在啟動時啟用、啟用或禁用掛載點(系統啟動時自動掛載)
systemctl is-active tmp.mount
systemctl enable tmp.mount
systemctl disable tmp.mount
13. 在Linux中遮蔽(讓它不能啟用)或可見掛載點
systemctl mask tmp.mount
ln -s /dev/null /etc/systemd/system/tmp.mount
systemctl unmask tmp.mount
rm /etc/systemd/system/tmp.mount
14. 列出所有可用系統套介面
systemctl list-unit-files –type=socket
15. 檢查某個服務的所有配置細節
systemctl show mysql
16. 獲取某個服務(httpd)的依賴性列表
systemctl list-dependencies httpd.service
17. 啟動救援模式
systemctl rescue
18. 進入緊急模式
systemctl emergency
19. 列出當前使用的執行等級
systemctl get-default
20. 啟動執行等級5,即圖形模式
systemctl isolate runlevel5.target
或
systemctl isolate graphical.target
21. 啟動執行等級3,即多使用者模式(命令列)
systemctl isolate runlevel3.target
或
systemctl isolate multiuser.target
22. 設定多使用者模式或圖形模式為預設執行等級
systemctl set-default runlevel3.target systemctl set-default runlevel5.target
23. 重啟、停止、掛起、休眠系統或使系統進入混合睡眠
systemctl reboot
systemctl halt
systemctl suspend systemctl hibernate
systemctl hybrid-sleep
對於不知執行等級為何物的人,說明如下。
Runlevel 0 : 關閉系統 Runlevel 1 : 救援,維護模式 Runlevel 3 : 多使用者,無圖形系統 Runlevel 4 : 多使用者,無圖形系統 Runlevel 5 : 多使用者,圖形化系統 Runlevel 6 : 關閉並重啟機器
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/312079/viewspace-2137159/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Docker centos7 systemctl命令不能使用DockerCentOS
- CentOS7中zip壓縮和unzip解壓縮命令詳解CentOS
- systemctl 命令完全指南
- Linux Centos7關機命令詳解及示例!LinuxCentOS
- Linux系統命令之systemctl命令。Linux
- shell中grep命令詳解
- java中jar命令詳解JavaJAR
- oracle中imp命令詳解Oracle
- AIX中TOPAS命令詳解AI
- CentOS7使用systemctl新增自定義服務CentOS
- CentOS 7 systemctl 命令總結CentOS
- Linux systemctl 命令完全指南Linux
- Centos7系統---檔案壓縮與解壓命令詳解。CentOS
- Linux常用命令詳解—基於CentOS7LinuxCentOS
- Linux中awk命令詳解Linux
- c#中命令模式詳解C#模式
- Linux中DD命令詳解Linux
- Linux中ps命令詳解Linux
- Oracle中shrink space命令詳解Oracle
- Java中jar命令用法詳解JavaJAR
- shell中set命令詳解(轉)
- Systemctl幾個操作服務命令
- Centos 7 systemctl和防火牆firewalld命令CentOS防火牆
- iptables使用詳解(centos7)CentOS
- systemctl的操作詳解總結及其與service的區別
- centos7中使用locate命令CentOS
- Linux中tail命令的使用詳解!LinuxAI
- tar命令中--exclude引數使用詳解
- Toad中關於Export命令詳解Export
- 使用Systemctl命令來管理系統服務
- centos7安裝教程詳解 centos7安裝詳細步驟CentOS
- centos7下Firewall使用詳解CentOS
- systemctl 命令在 Linux 中啟動、停止和重新啟動服務Linux
- Linux中sort,uniq,cut,wc命令詳解Linux
- Linux中find命令-path -prune用法詳解Linux
- DB2中export命令詳解<<轉載>>DB2Export
- Dockerfile 命令詳解Docker
- tcpdump命令詳解TCP