基本说明

centos 7以上是用 Systemd 进行系统初始化的,Systemd 是 Linux 系统中最新的初始化系统(init),它主要的设计目标是克服 sysvinit 固有的缺点,提高系统的启动速度。
Systemd 服务文件以 .service 结尾,比如现在要建立nginx为开机启动,如果用 yum install 命令安装的,yum命令会自动创建 nginx.service 文件,直接用命令 systemcel enable nginx.service 设置开机启动即可。

实例:源码安装的手动添加nginx.service服务

在系统服务目录里创建nginx.service文件

1
vi /lib/systemd/system/nginx.service

写入以下内容【注意路径】

1
2
3
4
5
6
7
8
9
10
11
[Unit]
Description=nginx
After=network.target
[Service]
Type=forking
ExecStart=/www/lnmp/nginx/sbin/nginx -c /www/lnmp/nginx/conf/nginx.conf
ExecReload=/www/lnmp/nginx/sbin/nginx -s reload
ExecStop=/www/lnmp/nginx/sbin/nginx -s quit
PrivateTmp=true
[Install]
WantedBy=multi-user.target

将服务加入开机自启动

1
systemctl enable nginx.service  #注意后面不能跟空格

代码解释说明

1
2
3
4
5
6
7
8
9
10
Description:描述服务
After:描述服务类别
[Service]服务运行参数的设置
Type=forking是后台运行的形式
ExecStart为服务的具体运行命令
ExecReload为重启命令
ExecStop为停止命令
PrivateTmp=True表示给服务分配独立的临时空间
注意:[Service]的启动、重启、停止命令全部要求使用绝对路径
[Install]运行级别下服务安装的相关设置,可设置为多用户,即系统运行级别为3

服务命令使用实例

1
2
3
4
5
6
systemctl start nginx.service              #启动nginx服务
systemctl enable nginx.service #设置开机自启动
systemctl disable nginx.service #停止开机自启动
systemctl status nginx.service #查看服务当前状态
systemctl restart nginx.service  #重新启动服务
systemctl list-units --type=service #查看所有已启动的服务