- 工信部備案號 滇ICP備05000110號-1
- 滇公安備案 滇53010302000111
- 增值電信業(yè)務(wù)經(jīng)營許可證 B1.B2-20181647、滇B1.B2-20190004
- 云南互聯(lián)網(wǎng)協(xié)會理事單位
- 安全聯(lián)盟認(rèn)證網(wǎng)站身份V標(biāo)記
- 域名注冊服務(wù)機構(gòu)許可:滇D3-20230001
- 代理域名注冊服務(wù)機構(gòu):新網(wǎng)數(shù)碼
從linux系統(tǒng)版本centos 6.x到centos 7.x變化整體不大,不過還是有很多地方需要我們注意?,最為直觀的當(dāng)屬服務(wù)管理命令,之前centos 7.x之前的系統(tǒng)我們使用service和chkconfig來管理服務(wù)器,而到了centos 7.x 這個版本的linux中,systemctl 一個命令就搞定了,它集成了service和chkconfig 的功能于一身。這里今天簡單說明一下:
systemctl start *.service #啟動?服務(wù)
systemctl stop *.service #停止某服務(wù)
systemctl restart *.service #重啟某服務(wù)
systemctl reload *.service #重載某服務(wù)配置文件
systemctl status *.service #查詢某服務(wù)運行狀態(tài)
systemctl is-enabled *.service #查看某服務(wù)是否開機啟動
systemctl enable *.service #設(shè)置開機啟動
systemctl disable *.service #取消開機啟動
systemctl –failed #查看啟動失敗的服務(wù)
注:*指服務(wù)的名字,比如重啟、iptables,我?就會這樣操作:
[root@21yunwei network-scripts]# systemctl stop iptables.service [root@21yunwei network-scripts]# systemctl start iptables.service [root@21yunwei network-scripts]# systemctl restart iptables.service [root@21yunwei network-scripts]# systemctl status iptables.service ? iptables.service - IPv4 firewall with iptables Loaded: loaded (/usr/lib/systemd/system/iptables.service; enabled; vendor preset: disabled) Active: active (exited) since Fri 2016-06-17 17:52:05 CST; 16s ago Process: 48807 ExecStop=/usr/libexec/iptables/iptables.init stop (code=exited, status=0/SUCCESS) Process: 48870 ExecStart=/usr/libexec/iptables/iptables.init start (code=exited, status=0/SUCCESS) Main PID: 48870 (code=exited, status=0/SUCCESS) Jun 17 17:52:05 21yunwei systemd[1]: Starting IPv4 firewall with iptables... Jun 17 17:52:05 21yunwei iptables.init[48870]: iptables: Applying firewall rules: [ OK ] Jun 17 17:52:05 21yunwei systemd[1]: Started IPv4 firewall with iptables. [root@21yunwei network-scripts]# systemctl is-enabled iptables.service enabled
補充一點小技巧:systemctl 默認(rèn)沒有服務(wù)器名補全,原因是最小化安裝沒有進(jìn)行安裝包bash-completion,需要執(zhí)行下邊命令后重新登錄系統(tǒng)就可以看到命令補全了。
yum install -y bash-completion
售前咨詢
售后咨詢
備案咨詢
二維碼
TOP