CentOS 7.2中对服务的一些操作
此文以常用的httpd.service为例
- 查看查看crond.serivce服务的自启动状态
命令:
systemctl is-enabled httpd.service
输出结果要么为enabled (已设置开机自启)要么为disabled(未设置开机自启)
- 设置服务为开机自启
命令:
systemctl enable httpd.service
执行完可以用第一条命令查看是否设置成功。
关闭自启将enable替换为disable即可
- 查看服务的当前状态
命令:
systemctl status serviceName.service
- 启动/停止服务
命令:
systemctl start/stop serviceName.service