php-fpm启动脚本
Posted XY
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php-fpm启动脚本相关的知识,希望对你有一定的参考价值。
1.安装php时,在源码目录下默认有个脚本文件,拷贝到/etc/init.d目录下就可以直接用
[[email protected] ~]# cp /usr/local/src/php-5.6.20/sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm
2.注意,php-fpm启动脚本依赖与php-fpm.pid文件,此时需要在php-fpm.conf开启pid参数
[[email protected] ~]# vim /usr/local/php/etc/php-fpm.conf 1 ;;;;;;;;;;;;;;;;;;;;; 2 ; FPM Configuration ; 3 ;;;;;;;;;;;;;;;;;;;;; 4 5 ; All relative paths in this configuration file are relative to PHP‘s install 6 ; prefix (/usr/local/php-5.6.20). This prefix can be dynamically changed by using the 7 ; ‘-p‘ argument from the command line. 8 9 ; Include one or more files. If glob(3) exists, it is used to include a bunch of 10 ; files from a glob(3) pattern. This directive can be used everywhere in the 11 ; file. 12 ; Relative path can also be used. They will be prefixed by: 13 ; - the global prefix if it‘s been set (-p argument) 14 ; - /usr/local/php-5.6.20 otherwise 15 ;include=etc/fpm.d/*.conf 16 17 ;;;;;;;;;;;;;;;;;; 18 ; Global Options ; 19 ;;;;;;;;;;;;;;;;;; 20 21 [global] 22 ; Pid file 23 ; Note: the default prefix is /usr/local/php-5.6.20/var 24 ; Default Value: none 25 pid = run/php-fpm.pid # 注释取消 26
3.启动测试
[[email protected] ~]# /etc/init.d/php-fpm stop Gracefully shutting down php-fpm . done [[email protected]-node01 ~]# /etc/init.d/php-fpm start Starting php-fpm done
以上是关于php-fpm启动脚本的主要内容,如果未能解决你的问题,请参考以下文章
Linux配置Nginx,MySql,php-fpm开机启动的方法