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

在linux下php的启动依靠php-fpm,每次开关机都要手动去启动,太麻烦了,这次我直接把它加入服务启动。

首先进入服务目录

# cd /etc/init.d

然后再在系统服务目录新建启动文件

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

写入以下内容(路径改成自己的)

[Unit]

Description=php-fpm

After=network.target

[Service]

Type=forking

ExecStart=/usr/local/php/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

使用下面命令可以直接启动停止php-fpm了

# 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 停止开机自启动

重启下服务器

# shutdown -r now

到这里就完了。

你可能感兴趣的:(centos,7,php开机启动)