phpfpm和nginx设置开机自动启动
Posted dongruiha
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了phpfpm和nginx设置开机自动启动相关的知识,希望对你有一定的参考价值。
## 添加执行权限
chmod a+x /etc/init.d/nginx
chmod a+x /etc/init.d/php-fpm
## 加入服务
chkconfig --add nginx
chkconfig --add php-fpm
## 开机自启
chkconfig nginx on
chkconfig php-fpm on
查看服务列表:
chkconfig --list
以上是关于phpfpm和nginx设置开机自动启动的主要内容,如果未能解决你的问题,请参考以下文章
CentOS下设置nginx开机自动启动和chkconfig管理