步骤1:查看crond.serivce服务的自启动状态
[root@localhost ~]# systemctl is-enabled crond.service
disabled
此时crond.serivce的自启动状态为disabled
步骤2:开启crond.serivce服务自启动
[root@localhost ~]# systemctl enabled crond.service
[root@localhost ~]# systemctl is-enabled crond.service
enabled
列出所有的启动文件:
systemctl list-unit-files
列出所有状态为enable的启动文件
systemctl list-unit-files | grep enable
关闭crond.serivce的自启动状态
systemctl disable crond.service
步骤1:查看crond.service的启动状态
systemctl status crond.service
开启crond.service服务命令
systemctl status crond.service
停止crond.service服务命令
systemctl stop crond.service
centos7设置服务为开机自启动(以crond.serivce为例)
原文地址:http://blog.51cto.com/mrxiong2017/2084790