systemd即为system daemon,是linux下的一种init软件 centos7版本中开始使用
几个常用服务相关命令
systemctl enable crond.service //让服务开机启动
systemctl disable crond //不让开机启动
systemctl status crond //查看状态
systemctl start crond //启动服务
systemctl stop crond //停止服务
systemctl restart crond //重启服务
systemctl is-enabled crond //检查服务是否开机启动
如果您想列出 systemd 服务,请执行 'systemctl list-unit-files'。