标签:最大 网站服务 children copy imu desc stop add gif
LNMP代表的就是:Linux系统下Nginx+MySQL+PHP这种网站服务器架构。
WNMP代表的就是:Windows系统下Nginx+MySQL+PHP这种网站服务器架构。
WAMP代表的就是:Windows系统下Apache+MySQL+PHP这种网站服务器架构。
========================================================================================
[root@localhost ~]# cd /usr/local/php5/etc
[root@localhost etc]# ls
pear.conf php-fpm.conf.default
[root@localhost etc]# cp php-fpm.conf.default php-fpm.conf
[root@localhost etc]# useradd -M -s /sbin/nologin php
[root@localhost etc]# vim php-fpm.conf
去掉第25行pid = run/php-fpm.pid的分号
第149行修改为:
user = php
group = php
第246行修改为:
pm.start_servers = 20 //FPM启动数为20个
第251行修改为:
pm.min_spare_servers = 5 //空闲数量为5个
; The desired maximum number of idle server processes.
; Note: Used only when pm is set to ‘dynamic‘
; Note: Mandatory when pm is set to ‘dynamic‘
pm.max_spare_servers = 35 //空闲数量为35个
第241行修改为:
pm.max_children = 50 //最大空闲为50个
[root@localhost etc]# /usr/local/sbin/php-fpm //启动FPM
[root@localhost etc]# netstat -anpt
tcp 0 0 127.0.0.1:9000 0.0.0.0:* LISTEN 8709/php-fpm: maste //FPM会开启一个9000的端口
[root@localhost etc]# cd
[root@localhost ~]# vim /etc/init.d/nginx
#!/bin/bash # chkconfig: 2345 99 20 # description: Nginx Server Control Scripts shell PROG="/usr/local/nginx/sbin/nginx" PIDF="/usr/local/nginx/logs/nginx.pid"
PROG_FPM="/usr/local/sbin/php-fpm"
PIDF_FPM="/usr/local/php5/var/run/php-fpm.pid"
case "$1" in start) $PROG $PROG_FPM ;; stop) kill -s QUIT $(cat $PIDF) kill -s QUIT $(cat $PIDF_FPM) ;; restart) $0 stop $0 start ;; reload) kill -s HUP $(cat $PIDF) ;; *) echo "Usage: $0 {start|stop|restart|reload}" exit 1 esac
exit 0
标签:最大 网站服务 children copy imu desc stop add gif
原文地址:https://www.cnblogs.com/L1-5551/p/11518452.html