從CentOS 7.x開始,CentOS開始使用systemd服務來代替daemon,原來管理系統啟動和管理系統服務的相關命令全部由systemctl命令來代替。
此外還是二個systemctl參數沒有與service命令參數對應
status :參數來查看服務運行情況
reload :重新加載服務,加載更新後的配置文件(並不是所有服務都支持這個參數,比如network.service)
應用舉例:
#啟動網絡服務
systemctl start network.service
#停止網絡服務
systemctl stop network.service
#重啟網絡服務
systemctl restart network.service
#查看網絡服務狀態
systemctl status network.serivce
2.1、設置開機啟動/不啟動
應用舉例:
#停止cup電源管理服務
systemctl stop cups.service
#禁止cups服務開機啟動
systemctl disable cups.service
#查看cups服務狀態
systemctl status cups.service
#重新設置cups服務開機啟動
systemctl enable cups.service
2.2、查看系統上上所有的服務
命令格式:
systemctl [command] [–type=TYPE] [–all]
參數詳解:
command
list-units:依據unit列出所有啟動的unit。加上 –all 才會列出沒啟動的unit;
list-unit-files:依據/usr/lib/systemd/system/ 內的啟動文件,列出啟動文件列表–type=TYPE
為unit type, 主要有service, socket, target
應用舉例:
應用舉例:
#查看網絡服務是否啟動
systemctl is-active network.service
#檢查網絡服務是否設置為開機啟動
systemctl is-enable network.service
#停止cups服務
systemctl stop cups.service
#注銷cups服務
systemctl mask cups.service
#查看cups服務狀態
systemctl status cups.service
#取消注銷cups服務
systemctl unmask cups.service
與開關機相關的其他命令:
5.1、運行級別對應表
此外還是一個getty.target用來設置tty的數量。
5.2、設置運行級別
命令格式:
systemctl [command] [unit.target]
參數詳解:
command:
get-default :取得當前的target
set-default :設置指定的target為默認的運行級別
isolate :切換到指定的運行級別unit.target :為5.1表中列出的運行級別
命令格式:
systemctl list-dependencies [unit] [–reverse]
–reverse是用來檢查尋哪個unit使用了這個unit
應用舉例:
#獲得當前運行級別的target
[root@www ~]# systemctl get-default
multi-user.target
#查看當前運行級別target(mult-user)啟動了哪些服務
[root@www ~]# systemctl list-dependencies
default.target
├─abrt-ccpp.service
├─abrt-oops.service
├─vsftpd.service
├─basic.target
│ ├─alsa-restore.service
│ ├─alsa-state.service
.....(中間省略).....
│ ├─sockets.target
│ │ ├─avahi-daemon.socket
│ │ ├─dbus.socket
.....(中間省略).....
│ ├─sysinit.target
│ │ ├─dev-hugepages.mount
│ │ ├─dev-mqueue.mount
.....(中間省略).....
│ └─timers.target
│ └─systemd-tmpfiles-clean.timer
├─getty.target
│ └─[email protected]
└─remote-fs.target
#查看哪些target引用了當前運行級別的target
[root@www ~]# systemctl list-dependencies --reverse
default.target
└─graphical.target
在使用systemctl關閉網絡服務時有一些特殊
需要同時關閉unit.servce和unit.socket
使用systemctl查看開啟的sshd服務
[root@www system]# systemctl list-units --all | grep sshd
sshd-keygen.service loaded inactive dead OpenSSH Server Key Generation
sshd.service loaded active running OpenSSH server daemon
sshd.socket loaded inactive dead OpenSSH Server Socket
可以看到系統同時開啟了sshd.service和sshd.socket , 如果只閉關了sshd.service那麼sshd.socket還在監聽網絡,在網絡上有要求連接sshd時就會啟動sshd.service。因此如果想完全關閉sshd服務的話,需要同時停用sshd.service和sshd.socket。
systemctl stop sshd.service
systemctl stop sshd.socket
systemctl disable sshd.service sshd.socket
由於centos 7.x默認沒有安裝net-tools,因此無法使用netstat 來查看主機開發的商品。需要通過yum安裝來獲得該工具包:
yum -y install net-tools
查看是否關閉22端口
netstat -lnp |grep sshd
Centos 7.x 中取消了iptables, 用firewall取而代之。要關閉防火牆並禁止開機啟動服務使用下面的命令:
systemctl stop firewalld.service
systemctl disable firewalld.service
systemctl 命令完全指南
CentOS 7 上systemctl 的用法
http://xxxxxx/Linuxjc/1135366.html TechArticle