systemctl用法及其語法

sqysl發表於2020-01-21

1.確定是否安裝systemd及其版本

# systemctl –version

2.確定systemd和systemctl的二進位制檔案和庫檔案的安裝位置

# whereis systemd

# whereis systemctl

3.確定systemd是否執行

# ps -eaf | grep [s]ystemd

4.分析systemd啟動程式

# systemd-analyze

5.分析啟動時各個程式花費的時間

# systemd-analyze blame

6. 分析啟動時的關鍵鏈

# systemd-analyze critical-chain

7.列出所有可用單元

# systemctl list-unit-files

8.列出所有執行中單元

# systemctl list-units

9.列出所有失敗單元

# systemctl --failed

10. 確定某個單元(如 nfs.service)是否啟用

# systemctl is-enabled nfs.service

11.確定某個單元或服務是否執行

# systemctl status nfs.service

12. 列出所有服務(包括啟用的和禁用的)

# systemctl list-unit-files --type=service

13.啟動、重啟、停止、過載服務及確定服務(如 nfs.service)狀態

# systemctl start nfs.service

# systemctl restart nfs.service

# systemctl stop nfs.service

# systemctl reload nfs.service

# systemctl status nfs.service

--注:

1)Systemctl的start,restart,stop和reload命令,終端並不輸出任何相關資訊,但可以透過status命令獲取。

14.啟用並配置服務自啟和禁用服務

# systemctl is-active nfs.service

# systemctl enable nfs.service

# systemctl disable nfs.service

15.遮蔽(禁止任何方式啟動服務,其比disabled作用更強)或解除遮蔽服務

# systemctl mask nfs.service

# systemctl unmask nfs.service

16.殺死服務

# systemctl kill nfs

# systemctl status nfs

17.列出所有系統掛載點

# systemctl list-unit-files --type=mount

18.掛載、解除安裝、重新掛載、過載系統掛載點和確定系統掛載點狀態

# systemctl start tmp.mount

# systemctl stop tmp.mount

# systemctl restart tmp.mount

# systemctl reload tmp.mount

# systemctl status tmp.mount

19. 啟動時啟用、啟用(自動掛載)或禁用掛載點

# systemctl is-active tmp.mount

# systemctl enable tmp.mount

# systemctl disable tmp.mount

20.遮蔽(使其不能啟用)或解遮蔽掛載點

# systemctl mask tmp.mount

# systemctl unmask tmp.mount

21. 列出所有可用套接字

# systemctl list-unit-files --type=socket

22. 啟動、重啟、停止、過載套接字並確認其狀態

# systemctl start cups.socket

# systemctl restart cups.socket

# systemctl stop cups.socket

# systemctl reload cups.socket

# systemctl status cups.socket

23.系統啟動時啟用套介面,並啟用(自啟)或禁用該套接字

# systemctl is-active cups.socket

# systemctl enable cups.socket

# systemctl disable cups.socket

24.遮蔽(使其不能啟動)或解遮蔽套接字

# systemctl mask cups.socket

# systemctl unmask cups.socket

25.獲取某個服務的CPU配額

# systemctl show -p CPUShares nfs.service

26.限制某個服務的CPU配額為2000

# systemctl set-property nfs.service CPUShares=2000

# systemctl show -p CPUShares nfs.service

--注:

1)當為某個服務設定CPU配額時,系統會以服務名為名字建立一個目錄(如 nfs.service),其中包含一個名為90-CPUShares.conf的檔案,該檔案包含CPUShare限制的相關資訊,可以用如下方式檢視該檔案。

# vi /etc/systemd/system/nfs.service.d/90-CPUShares.conf

27. 確定某個服務的所有配置資訊

# systemctl show nfs

28. 分析某個服務的關鍵鏈

# systemd-analyze critical-chain nfs.service

29.獲取某個服務的依賴性關係

# systemctl list-dependencies nfs.service

30.按等級列出控制組

# systemd-cgls

31.按CPU、記憶體、輸入和輸出列出控制組

# systemd-cgtop

32.進入系統救援模式

# systemctl rescue

33.進入緊急模式

# systemctl emergency

34. 確認當前的執行等級

# systemctl get-default

35.進入相應執行等級

--圖形模式(5)

# systemctl isolate runlevel5.target

# systemctl isolate graphical.target

--多使用者模式(3)

# systemctl isolate runlevel3.target

# systemctl isolate multiuser.target

36.設定預設執行等級

# systemctl set-default runlevel3.target

# systemctl set-default runlevel5.target

37.使系統重啟、停止、掛起、休眠或進入混合睡眠

# systemctl reboot

# systemctl halt

# systemctl suspend

# systemctl hibernate

# systemctl hybrid-sleep

--注:

1)Runlevel 0 : 關閉系統。

2)Runlevel 1 : 救援維護模式。

3)Runlevel 3 : 多使用者,無圖形模式。

4)Runlevel 4 : 系統未使用,保留。

5)Runlevel 5 : 多使用者,圖形化模式。

6)Runlevel 6 : 關閉並重啟系統。


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/8484829/viewspace-2674165/,如需轉載,請註明出處,否則將追究法律責任。

相關文章