php-fpm自动启动方式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php-fpm自动启动方式相关的知识,希望对你有一定的参考价值。
实验环境:
VM虚拟机
CentOS操作系统
第一种方式:通过脚本
[[email protected] ~]# cd /etc/init.d
[[email protected] init.d]# pkill php-fpm
[[email protected] init.d]# ps -ef|grep php-fpm
root 1657 1629 0 23:11 pts/0 00:00:00 grep php-fpm
[[email protected] init.d]# vi php-fpm #脚本见附件
[[email protected] init.d]# chmod a+x php-fpm #添加执行权限
[[email protected] init.d]# chkconfig --add php-fpm #加入服务
[[email protected] init.d]# chkconfig php-fpm on #开机自动启动服务
[[email protected] init.d]# service php-fpm start
[[email protected] init.d]# ps -ef|grep php-fpm
root 1673 1 0 23:13 ? 00:00:00 php-fpm: master process (/application/php5.3.27/etc/php-fpm.conf)
nginx 1674 1673 0 23:13 ? 00:00:00 php-fpm: pool www
nginx 1675 1673 0 23:13 ? 00:00:00 php-fpm: pool www
root 1677 1629 0 23:13 pts/0 00:00:00 grep php-fpm
第二种方式:
[[email protected] ~]# vi /etc/rc.local
#追加到末尾
/application/php/sbin/php-fpm
本文出自 “sky9890” 博客,请务必保留此出处http://sky9896.blog.51cto.com/2330653/1881203
以上是关于php-fpm自动启动方式的主要内容,如果未能解决你的问题,请参考以下文章