Centos7 系統 常用命令

對於用慣了centos6的同志們來說,Centos7用起來還是有很多不慣的地方


查看所有網卡IP地址——ip addr

 

啓動防火牆——systemctl start firewalld.service

 

停止防火牆——systemctl stop firewalld.service

 

禁止防火牆開機啓動——systemctl disable firewalld.service

 

列出正在運行的服務狀態——systemctl

 

啓動一個服務——systemctl start postfix.service

 

關閉一個服務——systemctl stop postfix.service

 

重啓一個服務:——systemctl restart postfix.service

 

顯示一個服務的狀態——systemctl status postfix.service

 

在開機時啓用一個服務——systemctl enable postfix.service

 

在開機時禁用一個服務——systemctl disable postfix.service

 

查看服務是否開機啓動——systemctl is-enabled postfix.service;echo $?

 

查看已啓動的服務列表——systemctl list-unit-files|grep enabled

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章