CentOS7中systemctl命令的用法-創(chuàng)新互聯(lián)

這篇文章主要介紹“CentOS7中systemctl命令的用法”,在日常操作中,相信很多人在CentOS7中systemctl命令的用法問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”CentOS7中systemctl命令的用法”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

創(chuàng)新互聯(lián)公司網(wǎng)站建設(shè)由有經(jīng)驗(yàn)的網(wǎng)站設(shè)計(jì)師、開發(fā)人員和項(xiàng)目經(jīng)理組成的專業(yè)建站團(tuán)隊(duì),負(fù)責(zé)網(wǎng)站視覺設(shè)計(jì)、用戶體驗(yàn)優(yōu)化、交互設(shè)計(jì)和前端開發(fā)等方面的工作,以確保網(wǎng)站外觀精美、做網(wǎng)站、成都網(wǎng)站設(shè)計(jì)易于使用并且具有良好的響應(yīng)性。

Linux Systemctl是一個(gè)系統(tǒng)管理守護(hù)進(jìn)程、工具和庫的集合,用于取代System V、service和chkconfig命令,初始進(jìn)程主要負(fù)責(zé)控制systemd系統(tǒng)和服務(wù)管理器。通過Systemctl –help可以看到該命令主要分為:查詢或發(fā)送控制命令給systemd服務(wù),管理單元服務(wù)的命令,服務(wù)文件的相關(guān)命令,任務(wù)、環(huán)境、快照相關(guān)命令,systemd服務(wù)的配置重載,系統(tǒng)開機(jī)關(guān)機(jī)相關(guān)的命令。

1. 列出所有可用單元

systemctl list-unit-files

2. 列出所有運(yùn)行中單元

systemctl list-units

3. 列出所有失敗單元

systemctl –failed

4. 檢查某個(gè)單元(如 crond.service)是否啟用

 systemctl is-enabled crond.service

5. 列出所有服務(wù)

systemctl list-unit-files –type=service

6. Linux中如何啟動(dòng)、重啟、停止、重載服務(wù)以及檢查服務(wù)(如 httpd.service)狀態(tài)

systemctl start httpd.service
systemctl restart httpd.service
systemctl stop httpd.service
systemctl reload httpd.service
systemctl status httpd.service

注意:當(dāng)我們使用systemctl的start,restart,stop和reload命令時(shí),終端不會(huì)輸出任何內(nèi)容,只有status命令可以打印輸出。

7. 如何激活服務(wù)并在開機(jī)時(shí)啟用或禁用服務(wù)(即系統(tǒng)啟動(dòng)時(shí)自動(dòng)啟動(dòng)mysql.service服務(wù))

systemctl is-active mysql.service
systemctl enable mysql.service
systemctl disable mysql.service

8. 如何屏蔽(讓它不能啟動(dòng))或顯示服務(wù)(如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命令殺死服務(wù)

systemctl kill crond

10. 列出所有系統(tǒng)掛載點(diǎn)

systemctl list-unit-files –type=mount

11. 掛載、卸載、重新掛載、重載系統(tǒng)掛載點(diǎn)并檢查系統(tǒng)中掛載點(diǎn)狀態(tài)

systemctl start tmp.mount
systemctl stop tmp.mount
systemctl restart tmp.mount
systemctl reload tmp.mount
systemctl status tmp.mount

12. 在啟動(dòng)時(shí)激活、啟用或禁用掛載點(diǎn)(系統(tǒng)啟動(dòng)時(shí)自動(dòng)掛載)

systemctl is-active tmp.mount
systemctl enable tmp.mount
systemctl disable tmp.mount

13. 在Linux中屏蔽(讓它不能啟用)或可見掛載點(diǎn)

systemctl mask tmp.mount
ln -s /dev/null /etc/systemd/system/tmp.mount
systemctl unmask tmp.mount
rm /etc/systemd/system/tmp.mount

14. 列出所有可用系統(tǒng)套接口

systemctl list-unit-files –type=socket

15. 檢查某個(gè)服務(wù)的所有配置細(xì)節(jié)

systemctl show mysql

16. 獲取某個(gè)服務(wù)(httpd)的依賴性列表

systemctl list-dependencies httpd.service

17. 啟動(dòng)救援模式

systemctl rescue

18. 進(jìn)入緊急模式

systemctl emergency

19. 列出當(dāng)前使用的運(yùn)行等級

systemctl get-default

20. 啟動(dòng)運(yùn)行等級5,即圖形模式

systemctl isolate runlevel5.target

systemctl isolate graphical.target

21. 啟動(dòng)運(yùn)行等級3,即多用戶模式(命令行)

systemctl isolate runlevel3.target

systemctl isolate multiuser.target

22. 設(shè)置多用戶模式或圖形模式為默認(rèn)運(yùn)行等級

systemctl set-default runlevel3.target
systemctl set-default runlevel5.target

23. 重啟、停止、掛起、休眠系統(tǒng)或使系統(tǒng)進(jìn)入混合睡眠

systemctl reboot
systemctl halt
systemctl suspend systemctl hibernate
systemctl hybrid-sleep

對于不知運(yùn)行等級為何物的人,說明如下。

Runlevel 0 : 關(guān)閉系統(tǒng)
Runlevel 1 : 救援,維護(hù)模式
Runlevel 3 : 多用戶,無圖形系統(tǒng)
Runlevel 4 : 多用戶,無圖形系統(tǒng)
Runlevel 5 : 多用戶,圖形化系統(tǒng)
Runlevel 6 : 關(guān)閉并重啟機(jī)器

到此,關(guān)于“CentOS7中systemctl命令的用法”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請繼續(xù)關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!

文章題目:CentOS7中systemctl命令的用法-創(chuàng)新互聯(lián)
網(wǎng)頁鏈接:http://muchs.cn/article42/iogec.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供響應(yīng)式網(wǎng)站、品牌網(wǎng)站建設(shè)定制網(wǎng)站、移動(dòng)網(wǎng)站建設(shè)、面包屑導(dǎo)航、搜索引擎優(yōu)化

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

搜索引擎優(yōu)化