设置php-fpm开机自启动(centos7.x)

进入服务目录

cd /etc/init.d

系统服务目录创建启动文件

vim /lib/systemd/system/php-fpm.service

写入内容

[Unit]
Description=php-fpm
After=network.target
[Service]
Type=forking
ExecStart=/usr/sbin/php-fpm
PrivateTmp=true
[Install]
WantedBy=multi-user.target

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

设置开机启动

systemctl enable php-fpm.service

# systemctl start php-fpm.service          启动nginx服务

# systemctl stop php-fpm.service           停止服务

# systemctl restart php-fpm.service        重新启动服务

# systemctl list-units --type=service     查看所有已启动的服务

# systemctl status php-fpm.service          查看服务当前状态

# systemctl enable php-fpm.service          设置开机自启动

# systemctl disable php-fpm.service         停止开机自启动

相关文章

转载请注明: 转载自 浮生一程
本文链接地址 设置php-fpm开机自启动(centos7.x)
上一篇
下一篇