centos7中systemctl命令使用方法和心得体会

时间:2024-11-11 15:35:32

使用linux的同学对service和chkconfig两个命令都不陌生,其重要性不言而喻,那么怎么会突然冒出个systemctl命令呢?其实,为了简化操作,systemctl命令将service和chkconfig命令结合在了一起。这样通过一个命令就可以实现两个命令的功能

systemctl命令的基本操作格式是:

  systemctl   动作   服务名.service

以httpd为例

  systemctl start httpd  #启动httpd服务

  systemctl stop httpd  #关闭httpd服务

  systemctl restart httpd #重启httpd服务

  systemctl status httpd  #检查httpd状态

  systemctl enable httpd  #httpd服务开机启动

  systemctl disable httpd  #httpd服务禁止开机启动

  systemctl is-enabled httpd  #检测httpd服务是否开机启动

使用systemctl命令,要记住start,stop,restart,status,enable,disable,is-enabled。就可以很好的使用!