说明
参考网络上其他人文章。将他人技术文章亲自测试并总结补充。
开机自启动nginx,php-fpm(其他服务类似)
centos 7以上是用Systemd进行系统初始化的,Systemd 是 Linux 系统中最新的初始化系统(init),它主要的设计目标是克服 sysvinit 固有的缺点,提高系统的启动速度。 Systemd服务文件以.service结尾,比如现在要建立nginx为开机启动,如果用yum install命令安装的,yum命令会自动创建文件,直接用命令systemcel enable 设置开机启动即可。
systemcel enable
源码安装的手动建立服务文件
- 在系统服务目录里创建文件
写入以下内容(路径改成自己的)vi /lib/systemd/system/
在系统服务目录里创建文件[Unit] Description=nginx After= [Service] Type=forking ExecStart=/www/lnmp/nginx/sbin/nginx -c /www/lnmp/nginx/conf/ ExecReload=/www/lnmp/nginx/sbin/nginx -s reload ExecStop=/www/lnmp/nginx/sbin/nginx -s quit PrivateTmp=true [Install] WantedBy=
写入以下内容(路径改成自己的)vi /lib/systemd/system/
[Unit] Description=php-fpm After= [Service] Type=forking ExecStart=/www/lnmp/php/sbin/php-fpm ExecStop=/bin/pkill -9 php-fpm PrivateTmp=true [Install] WantedBy=
[Unit]:服务的说明
Description:描述服务
After:描述服务类别
[Service]服务运行参数的设置
Type=forking是后台运行的形式
ExecStart为服务的具体运行命令
ExecReload为重启命令
ExecStop为停止命令
PrivateTmp=True表示给服务分配独立的临时空间
注意:[Service]的启动、重启、停止命令全部要求使用绝对路径
[Install]运行级别下服务安装的相关设置,可设置为多用户,即系统运行级别为3 - 测试并加入开机自启
先关闭nginx,php-fpm
使用以下命令开启
开启成功,将服务加入开机自启systemctl start #如果服务是开启状态,使用此命令会启动失败。 systemctl start
重启服务器,查看是否启动systemctl enable #注意后面不能跟空格 systemctl enable
shutdown -r now #重启
systemctl list-units --type=service #查看运行的服务
其他命令
systemctl start #启动nginx服务
systemctl enable #设置开机自启动
systemctl disable #停止开机自启动
systemctl status #查看服务当前状态
systemctl restart #重新启动服务
systemctl list-units --type=service #查看所有已启动的服务