CentOS 7系统服务的启动、重启、停止、开机启动、设置服务等命令,已合并为systemctl .

systemctl 合并了service 和 chkconfig两个命令的功能

systemctl = service + chkconfig

现在用service 或/etc/init.d/命令启动, 重启, 停止等没效果, 因为命令合并为systemctl.

 

systemctl 新命令

以启动httpd和设置Apache httpd为服务启动为例子:

CentOS 6.x 命令是这样:

service httpd start                 // 启动Apache httpd
service httpd restart                // 重新启动
service httpd stop                   // 停止服务
chkconfig –levels 235 httpd on               // 开机启动httpd

或是:

/etc/init.d/ httpd start                   // 启动
/etc/init.d/ httpd restart               // 重新启动
/etc/init.d/ httpd stop                  // 停止服务

 

CentOS 7.x 把这些命令全部合并了,使用也更加方便

当然也是习惯问题,如果习惯了之前命令,CentOS新命令还得适应适应,其实很简单,只要这样记忆,使用就比较方便了.

systemctl  动作  服务名.service

一些CentOS7 systemctl命令简单实用实例:

systemctl start httpd.service            // 启动Apache httpd
systemctl restart httpd.service         // 重新启动
systemctl stop httpd.service            // 停止服务
systemctl enable httpd.service          // 开机启动httpd
systemctl disable httpd.service          // 禁止开机启动httpd

 

参考推荐:

RHEL/CentOS 7.x的几点新改变