Advertisement
Guest User

Server Config

a guest
Apr 3rd, 2012
648
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 49.13 KB | None | 0 0
  1. [root@imitu ~]# cat /proc/cpuinfo
  2. processor : 0
  3. vendor_id : GenuineIntel
  4. cpu family : 6
  5. model : 30
  6. model name : Intel(R) Xeon(R) CPU X3430 @ 2.40GHz
  7. stepping : 5
  8. cpu MHz : 2395.068
  9. cache size : 8192 KB
  10. physical id : 0
  11. siblings : 4
  12. core id : 0
  13. cpu cores : 4
  14. apicid : 0
  15. fpu : yes
  16. fpu_exception : yes
  17. cpuid level : 11
  18. wp : yes
  19. flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx rdtscp lm constant_tsc ida nonstop_tsc pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
  20. bogomips : 4790.13
  21. clflush size : 64
  22. cache_alignment : 64
  23. address sizes : 36 bits physical, 48 bits virtual
  24. power management: [8]
  25.  
  26. processor : 1
  27. vendor_id : GenuineIntel
  28. cpu family : 6
  29. model : 30
  30. model name : Intel(R) Xeon(R) CPU X3430 @ 2.40GHz
  31. stepping : 5
  32. cpu MHz : 2395.068
  33. cache size : 8192 KB
  34. physical id : 0
  35. siblings : 4
  36. core id : 1
  37. cpu cores : 4
  38. apicid : 2
  39. fpu : yes
  40. fpu_exception : yes
  41. cpuid level : 11
  42. wp : yes
  43. flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx rdtscp lm constant_tsc ida nonstop_tsc pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
  44. bogomips : 4790.05
  45. clflush size : 64
  46. cache_alignment : 64
  47. address sizes : 36 bits physical, 48 bits virtual
  48. power management: [8]
  49.  
  50. processor : 2
  51. vendor_id : GenuineIntel
  52. cpu family : 6
  53. model : 30
  54. model name : Intel(R) Xeon(R) CPU X3430 @ 2.40GHz
  55. stepping : 5
  56. cpu MHz : 2395.068
  57. cache size : 8192 KB
  58. physical id : 0
  59. siblings : 4
  60. core id : 2
  61. cpu cores : 4
  62. apicid : 4
  63. fpu : yes
  64. fpu_exception : yes
  65. cpuid level : 11
  66. wp : yes
  67. flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx rdtscp lm constant_tsc ida nonstop_tsc pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
  68. bogomips : 4789.96
  69. clflush size : 64
  70. cache_alignment : 64
  71. address sizes : 36 bits physical, 48 bits virtual
  72. power management: [8]
  73.  
  74. processor : 3
  75. vendor_id : GenuineIntel
  76. cpu family : 6
  77. model : 30
  78. model name : Intel(R) Xeon(R) CPU X3430 @ 2.40GHz
  79. stepping : 5
  80. cpu MHz : 2395.068
  81. cache size : 8192 KB
  82. physical id : 0
  83. siblings : 4
  84. core id : 3
  85. cpu cores : 4
  86. apicid : 6
  87. fpu : yes
  88. fpu_exception : yes
  89. cpuid level : 11
  90. wp : yes
  91. flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx rdtscp lm constant_tsc ida nonstop_tsc pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
  92. bogomips : 4789.93
  93. clflush size : 64
  94. cache_alignment : 64
  95. address sizes : 36 bits physical, 48 bits virtual
  96. power management: [8]
  97.  
  98.  
  99. [root@imitu nginx]# cat /usr/local/nginx/nginx.conf
  100. user nginx;
  101. worker_processes 8;
  102. error_log logs/error.log;
  103. pid logs/nginx.pid;
  104.  
  105. events {
  106. worker_connections 1024;
  107. }
  108.  
  109. http {
  110. include mime.types;
  111. default_type application/octet-stream;
  112.  
  113. log_format main '$remote_addr - $remote_user [$time_local] "$request "'
  114. '$status $body_bytes_sent "$http_referer" '
  115. '"$http_user_agent" "$http_x_forwarded_for"';
  116. access_log logs/access.log main;
  117.  
  118. sendfile on;
  119. autoindex off;
  120. fastcgi_connect_timeout 300;
  121. fastcgi_send_timeout 300;
  122. fastcgi_read_timeout 300;
  123. send_timeout 300;
  124.  
  125. map $scheme $fastcgi_https { ## Detect when HTTPS is used
  126. default off;
  127. https on;
  128. }
  129. fastcgi_buffers 8 16k;
  130. fastcgi_buffer_size 32k;
  131. keepalive_timeout 120;
  132.  
  133. gzip on;
  134. gzip_http_version 1.0;
  135. gzip_comp_level 6;
  136. gzip_proxied any;
  137. gzip_min_length 1100;
  138. gzip_buffers 16 8k;
  139. gzip_types text/plain text/html text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript;
  140.  
  141. # Some version of IE 6 don't handle compression well on some mime-types, so just disable for them
  142. gzip_disable "MSIE [1-6].(?!.*SV1)";
  143.  
  144. # Set a vary header so downstream proxies don't send cached gzipped content to IE6
  145. gzip_vary on;
  146. ## /Compression
  147.  
  148. # Load config files from the /etc/nginx/conf.d directory
  149. include /usr/local/nginx/domain/*.conf;
  150.  
  151. }
  152.  
  153. location ~ \.php$ {
  154. root html;
  155. fastcgi_pass 127.0.0.1:9000;
  156. fastcgi_index index.php;
  157. fastcgi_param SCRIPT_FILENAME /usr/local/nginx/scripts$fastcgi_script_name;
  158. include fastcgi_params;
  159. }
  160.  
  161. __
  162. [root@imitu nginx]# cat /etc/php-fpm.conf
  163. ;;;;;;;;;;;;;;;;;;;;;
  164. ; FPM Configuration ;
  165. ;;;;;;;;;;;;;;;;;;;;;
  166.  
  167. ; All relative paths in this configuration file are relative to PHP's install
  168. ; prefix.
  169.  
  170. ; Include one or more files. If glob(3) exists, it is used to include a bunch of
  171. ; files from a glob(3) pattern. This directive can be used everywhere in the
  172. ; file.
  173. include=/etc/php-fpm.d/*.conf
  174.  
  175. ;;;;;;;;;;;;;;;;;;
  176. ; Global Options ;
  177. ;;;;;;;;;;;;;;;;;;
  178.  
  179. [global]
  180. ; Pid file
  181. ; Default Value: none
  182. pid = /var/run/php-fpm/php-fpm.pid
  183.  
  184. ; Error log file
  185. ; Default Value: /var/log/php-fpm.log
  186. error_log = /var/log/php-fpm/error.log
  187.  
  188. ; Log level
  189. ; Possible Values: alert, error, warning, notice, debug
  190. ; Default Value: notice
  191. ;log_level = notice
  192.  
  193. ; If this number of child processes exit with SIGSEGV or SIGBUS within the time
  194. ; interval set by emergency_restart_interval then FPM will restart. A value
  195. ; of '0' means 'Off'.
  196. ; Default Value: 0
  197. ;emergency_restart_threshold = 0
  198.  
  199. ; Interval of time used by emergency_restart_interval to determine when
  200. ; a graceful restart will be initiated. This can be useful to work around
  201. ; accidental corruptions in an accelerator's shared memory.
  202. ; Available Units: s(econds), m(inutes), h(ours), or d(ays)
  203. ; Default Unit: seconds
  204. ; Default Value: 0
  205. ;emergency_restart_interval = 0
  206.  
  207. ; Time limit for child processes to wait for a reaction on signals from master.
  208. ; Available units: s(econds), m(inutes), h(ours), or d(ays)
  209. ; Default Unit: seconds
  210. ; Default Value: 0
  211. ;process_control_timeout = 0
  212.  
  213. ; Send FPM to background. Set to 'no' to keep FPM in foreground for debugging.
  214. ; Default Value: yes
  215. ;daemonize = yes
  216.  
  217. ;;;;;;;;;;;;;;;;;;;;
  218. ; Pool Definitions ;
  219. ;;;;;;;;;;;;;;;;;;;;
  220.  
  221. ; See /etc/php-fpm.d/*.conf
  222.  
  223. ___
  224. [root@imitu nginx]# cat /etc/php-fpm.d/*.conf
  225. ; Start a new pool named 'www'.
  226. [www]
  227.  
  228. ; The address on which to accept FastCGI requests.
  229. ; Valid syntaxes are:
  230. ; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific address on
  231. ; a specific port;
  232. ; 'port' - to listen on a TCP socket to all addresses on a
  233. ; specific port;
  234. ; '/path/to/unix/socket' - to listen on a unix socket.
  235. ; Note: This value is mandatory.
  236. listen = 127.0.0.1:9000
  237.  
  238. ; Set listen(2) backlog. A value of '-1' means unlimited.
  239. ; Default Value: -1
  240. listen.backlog = -1
  241.  
  242.  
  243.  
  244.  
  245. ; List of ipv4 addresses of FastCGI clients which are allowed to connect.
  246. ; Equivalent to the FCGI_WEB_SERVER_ADDRS environment variable in the original
  247. ; PHP FCGI (5.2.2+). Makes sense only with a tcp listening socket. Each address
  248. ; must be separated by a comma. If this value is left blank, connections will be
  249. ; accepted from any ip address.
  250. ; Default Value: any
  251. listen.allowed_clients = 127.0.0.1
  252.  
  253. ; Set permissions for unix socket, if one is used. In Linux, read/write
  254. ; permissions must be set in order to allow connections from a web server. Many
  255. ; BSD-derived systems allow connections regardless of permissions.
  256. ; Default Values: user and group are set as the running user
  257. ; mode is set to 0666
  258. ;listen.owner = nobody
  259. ;listen.group = nobody
  260. ;listen.mode = 0666
  261.  
  262. ; Unix user/group of processes
  263. ; Note: The user is mandatory. If the group is not set, the default user's group
  264. ; will be used.
  265. ; RPM: apache Choosed to be able to access some dir as httpd
  266. user = apache
  267. ; RPM: Keep a group allowed to write in log dir.
  268. group = apache
  269.  
  270. ; Choose how the process manager will control the number of child processes.
  271. ; Possible Values:
  272. ; static - a fixed number (pm.max_children) of child processes;
  273. ; dynamic - the number of child processes are set dynamically based on the
  274. ; following directives:
  275. ; pm.max_children - the maximum number of children that can
  276. ; be alive at the same time.
  277. ; pm.start_servers - the number of children created on startup.
  278. ; pm.min_spare_servers - the minimum number of children in 'idle'
  279. ; state (waiting to process). If the number
  280. ; of 'idle' processes is less than this
  281. ; number then some children will be created.
  282. ; pm.max_spare_servers - the maximum number of children in 'idle'
  283. ; state (waiting to process). If the number
  284. ; of 'idle' processes is greater than this
  285. ; number then some children will be killed.
  286. ; Note: This value is mandatory.
  287. pm = dynamic
  288.  
  289. ; The number of child processes to be created when pm is set to 'static' and the
  290. ; maximum number of child processes to be created when pm is set to 'dynamic'.
  291. ; This value sets the limit on the number of simultaneous requests that will be
  292. ; served. Equivalent to the ApacheMaxClients directive with mpm_prefork.
  293. ; Equivalent to the PHP_FCGI_CHILDREN environment variable in the original PHP
  294. ; CGI.
  295. ; Note: Used when pm is set to either 'static' or 'dynamic'
  296. ; Note: This value is mandatory.
  297. pm.max_children = 11
  298.  
  299. ; The number of child processes created on startup.
  300. ; Note: Used only when pm is set to 'dynamic'
  301. ; Default Value: min_spare_servers + (max_spare_servers - min_spare_servers) / 2
  302. pm.start_servers = 3
  303.  
  304. ; The desired minimum number of idle server processes.
  305. ; Note: Used only when pm is set to 'dynamic'
  306. ; Note: Mandatory when pm is set to 'dynamic'
  307. pm.min_spare_servers = 2
  308.  
  309. ; The desired maximum number of idle server processes.
  310. ; Note: Used only when pm is set to 'dynamic'
  311. ; Note: Mandatory when pm is set to 'dynamic'
  312. pm.max_spare_servers = 4
  313.  
  314. ; The number of requests each child process should execute before respawning.
  315. ; This can be useful to work around memory leaks in 3rd party libraries. For
  316. ; endless request processing specify '0'. Equivalent to PHP_FCGI_MAX_REQUESTS.
  317. ; Default Value: 0
  318. pm.max_requests = 500
  319.  
  320. ; The URI to view the FPM status page. If this value is not set, no URI will be
  321. ; recognized as a status page. By default, the status page shows the following
  322. ; information:
  323. ; accepted conn - the number of request accepted by the pool;
  324. ; pool - the name of the pool;
  325. ; process manager - static or dynamic;
  326. ; idle processes - the number of idle processes;
  327. ; active processes - the number of active processes;
  328. ; total processes - the number of idle + active processes.
  329. ; The values of 'idle processes', 'active processes' and 'total processes' are
  330. ; updated each second. The value of 'accepted conn' is updated in real time.
  331. ; Example output:
  332. ; accepted conn: 12073
  333. ; pool: www
  334. ; process manager: static
  335. ; idle processes: 35
  336. ; active processes: 65
  337. ; total processes: 100
  338. ; By default the status page output is formatted as text/plain. Passing either
  339. ; 'html' or 'json' as a query string will return the corresponding output
  340. ; syntax. Example:
  341. ; http://www.foo.bar/status
  342. ; http://www.foo.bar/status?json
  343. ; http://www.foo.bar/status?html
  344. ; Note: The value must start with a leading slash (/). The value can be
  345. ; anything, but it may not be a good idea to use the .php extension or it
  346. ; may conflict with a real PHP file.
  347. ; Default Value: not set
  348. pm.status_path = /status
  349.  
  350. ; The ping URI to call the monitoring page of FPM. If this value is not set, no
  351. ; URI will be recognized as a ping page. This could be used to test from outside
  352. ; that FPM is alive and responding, or to
  353. ; - create a graph of FPM availability (rrd or such);
  354. ; - remove a server from a group if it is not responding (load balancing);
  355. ; - trigger alerts for the operating team (24/7).
  356. ; Note: The value must start with a leading slash (/). The value can be
  357. ; anything, but it may not be a good idea to use the .php extension or it
  358. ; may conflict with a real PHP file.
  359. ; Default Value: not set
  360. ;ping.path = /ping
  361.  
  362. ; This directive may be used to customize the response of a ping request. The
  363. ; response is formatted as text/plain with a 200 response code.
  364. ; Default Value: pong
  365. ;ping.response = pong
  366.  
  367. ; The timeout for serving a single request after which the worker process will
  368. ; be killed. This option should be used when the 'max_execution_time' ini option
  369. ; does not stop script execution for some reason. A value of '0' means 'off'.
  370. ; Available units: s(econds)(default), m(inutes), h(ours), or d(ays)
  371. ; Default Value: 0
  372. request_terminate_timeout = 300s
  373.  
  374. ; The timeout for serving a single request after which a PHP backtrace will be
  375. ; dumped to the 'slowlog' file. A value of '0s' means 'off'.
  376. ; Available units: s(econds)(default), m(inutes), h(ours), or d(ays)
  377. ; Default Value: 0
  378. ;request_slowlog_timeout = 0
  379.  
  380. ; The log file for slow requests
  381. ; Default Value: not set
  382. ; Note: slowlog is mandatory if request_slowlog_timeout is set
  383. slowlog = /var/log/php-fpm/www-slow.log
  384.  
  385. ; Set open file descriptor rlimit.
  386. ; Default Value: system defined value
  387. rlimit_files = 131072
  388.  
  389. ; Set max core size rlimit.
  390. ; Possible Values: 'unlimited' or an integer greater or equal to 0
  391. ; Default Value: system defined value
  392. rlimit_core = unlimited
  393.  
  394. ; Chroot to this directory at the start. This value must be defined as an
  395. ; absolute path. When this value is not set, chroot is not used.
  396. ; Note: chrooting is a great security feature and should be used whenever
  397. ; possible. However, all PHP paths will be relative to the chroot
  398. ; (error_log, sessions.save_path, ...).
  399. ; Default Value: not set
  400. ;chroot =
  401.  
  402. ; Chdir to this directory at the start. This value must be an absolute path.
  403. ; Default Value: current directory or / when chroot
  404. ;chdir = /var/www
  405.  
  406. ; Redirect worker stdout and stderr into main error log. If not set, stdout and
  407. ; stderr will be redirected to /dev/null according to FastCGI specs.
  408. ; Default Value: no
  409. catch_workers_output = yes
  410.  
  411. ; Pass environment variables like LD_LIBRARY_PATH. All $VARIABLEs are taken from
  412. ; the current environment.
  413. ; Default Value: clean env
  414. env[HOSTNAME] = $HOSTNAME
  415. ;env[PATH] = /usr/local/bin:/usr/bin:/bin
  416. env[TMP] = /tmp
  417. env[TMPDIR] = /tmp
  418. env[TEMP] = /tmp
  419.  
  420. ; Additional php.ini defines, specific to this pool of workers. These settings
  421. ; overwrite the values previously defined in the php.ini. The directives are the
  422. ; same as the PHP SAPI:
  423. ; php_value/php_flag - you can set classic ini defines which can
  424. ; be overwritten from PHP call 'ini_set'.
  425. ; php_admin_value/php_admin_flag - these directives won't be overwritten by
  426. ; PHP call 'ini_set'
  427. ; For php_*flag, valid values are on, off, 1, 0, true, false, yes or no.
  428.  
  429. ; Defining 'extension' will load the corresponding shared extension from
  430. ; extension_dir. Defining 'disable_functions' or 'disable_classes' will not
  431. ; overwrite previously defined php.ini values, but will append the new value
  432. ; instead.
  433.  
  434. ; Default Value: nothing is defined by default except the values in php.ini and
  435. ; specified at startup with the -d argument
  436. ;php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f www@my.domain.com
  437. ;php_flag[display_errors] = off
  438. php_admin_value[error_log] = /var/log/php-fpm/www-error.log
  439. php_admin_flag[log_errors] = on
  440. ;php_admin_value[memory_limit] = 32M
  441.  
  442. __
  443.  
  444. [root@imitu nginx]# ps aux |grep -e php -e nginx
  445. apache 12660 0.0 0.0 75548 776 ? S 00:29 0:13 searchd -c /usr/local/nginx/html/var/aw_advancedsearch/searchd.conf
  446. root 18429 0.0 0.0 44160 1504 ? Ss 10:57 0:00 nginx: master process /usr/local/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
  447. nginx 18430 0.0 0.0 44160 2584 ? S 10:57 0:00 nginx: worker process
  448. nginx 18431 0.0 0.0 44160 2568 ? S 10:57 0:00 nginx: worker process
  449. nginx 18432 0.0 0.0 44160 2604 ? S 10:57 0:00 nginx: worker process
  450. nginx 18434 0.0 0.0 44160 2548 ? S 10:57 0:00 nginx: worker process
  451. nginx 18435 0.0 0.0 44160 2564 ? S 10:57 0:00 nginx: worker process
  452. nginx 18436 0.0 0.0 44160 2524 ? S 10:57 0:00 nginx: worker process
  453. nginx 18437 0.0 0.0 44160 2580 ? S 10:57 0:00 nginx: worker process
  454. nginx 18438 0.0 0.0 44160 2568 ? S 10:57 0:00 nginx: worker process
  455. root 18962 0.0 0.0 311152 5300 ? Ss 11:14 0:00 php-fpm: master process (/etc/php-fpm.conf)
  456. root 25809 0.0 0.0 58964 556 pts/2 S+ 12:26 0:00 tail -f /var/log/php-fpm/error.log
  457. apache 26186 6.8 0.8 340492 68116 ? R 12:30 0:05 php-fpm: pool www
  458. apache 26236 5.8 0.8 341536 68520 ? S 12:30 0:03 php-fpm: pool www
  459. apache 26242 2.2 0.6 333488 53080 ? S 12:30 0:01 php-fpm: pool www
  460. apache 26243 4.0 0.8 341780 68936 ? S 12:30 0:02 php-fpm: pool www
  461. root 26369 0.0 0.0 61220 824 pts/1 S+ 12:31 0:00 grep -e php -e nginx
  462.  
  463.  
  464. __
  465.  
  466. [root@imitu nginx]# free -m
  467. total used free shared buffers cached
  468. Mem: 7972 6132 1840 0 541 4329
  469. -/+ buffers/cache: 1260 6711
  470. Swap: 4094 0 4094
  471.  
  472. ____
  473.  
  474. grep -e WARNING -e ERROR /var/log/php-fpm/*.log
  475.  
  476. /var/log/php-fpm/error.log:[02-Apr-2012 22:55:32] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  477. /var/log/php-fpm/error.log:[02-Apr-2012 22:56:10] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  478. /var/log/php-fpm/error.log:[02-Apr-2012 22:56:32] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  479. /var/log/php-fpm/error.log:[02-Apr-2012 22:57:25] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  480. /var/log/php-fpm/error.log:[02-Apr-2012 22:57:32] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  481. /var/log/php-fpm/error.log:[02-Apr-2012 22:58:32] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  482. /var/log/php-fpm/error.log:[02-Apr-2012 22:59:09] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  483. /var/log/php-fpm/error.log:[02-Apr-2012 22:59:35] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  484. /var/log/php-fpm/error.log:[02-Apr-2012 23:00:08] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  485. /var/log/php-fpm/error.log:[02-Apr-2012 23:00:46] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  486. /var/log/php-fpm/error.log:[02-Apr-2012 23:00:59] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  487. /var/log/php-fpm/error.log:[02-Apr-2012 23:01:07] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  488. /var/log/php-fpm/error.log:[02-Apr-2012 23:01:18] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  489. /var/log/php-fpm/error.log:[02-Apr-2012 23:02:14] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  490. /var/log/php-fpm/error.log:[02-Apr-2012 23:03:30] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  491. /var/log/php-fpm/error.log:[02-Apr-2012 23:03:35] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  492. /var/log/php-fpm/error.log:[02-Apr-2012 23:03:52] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  493. /var/log/php-fpm/error.log:[02-Apr-2012 23:04:08] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  494. /var/log/php-fpm/error.log:[02-Apr-2012 23:04:49] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  495. /var/log/php-fpm/error.log:[02-Apr-2012 23:05:48] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  496. /var/log/php-fpm/error.log:[02-Apr-2012 23:06:31] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  497. /var/log/php-fpm/error.log:[02-Apr-2012 23:07:21] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  498. /var/log/php-fpm/error.log:[02-Apr-2012 23:08:07] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  499. /var/log/php-fpm/error.log:[02-Apr-2012 23:09:23] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  500. /var/log/php-fpm/error.log:[02-Apr-2012 23:10:47] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  501. /var/log/php-fpm/error.log:[02-Apr-2012 23:11:03] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  502. /var/log/php-fpm/error.log:[02-Apr-2012 23:11:31] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  503. /var/log/php-fpm/error.log:[02-Apr-2012 23:11:49] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  504. /var/log/php-fpm/error.log:[02-Apr-2012 23:12:04] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  505. /var/log/php-fpm/error.log:[02-Apr-2012 23:12:26] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  506. /var/log/php-fpm/error.log:[02-Apr-2012 23:13:55] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  507. /var/log/php-fpm/error.log:[02-Apr-2012 23:14:14] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  508. /var/log/php-fpm/error.log:[02-Apr-2012 23:16:38] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  509. /var/log/php-fpm/error.log:[02-Apr-2012 23:18:36] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  510. /var/log/php-fpm/error.log:[02-Apr-2012 23:18:56] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  511. /var/log/php-fpm/error.log:[02-Apr-2012 23:19:05] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  512. /var/log/php-fpm/error.log:[02-Apr-2012 23:20:34] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  513. /var/log/php-fpm/error.log:[02-Apr-2012 23:20:43] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  514. /var/log/php-fpm/error.log:[02-Apr-2012 23:21:05] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  515. /var/log/php-fpm/error.log:[02-Apr-2012 23:21:24] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  516. /var/log/php-fpm/error.log:[02-Apr-2012 23:21:47] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  517. /var/log/php-fpm/error.log:[02-Apr-2012 23:22:13] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  518. /var/log/php-fpm/error.log:[02-Apr-2012 23:22:43] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  519. /var/log/php-fpm/error.log:[02-Apr-2012 23:23:00] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  520. /var/log/php-fpm/error.log:[02-Apr-2012 23:23:26] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  521. /var/log/php-fpm/error.log:[02-Apr-2012 23:23:39] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  522. /var/log/php-fpm/error.log:[02-Apr-2012 23:24:31] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  523. /var/log/php-fpm/error.log:[02-Apr-2012 23:24:50] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  524. /var/log/php-fpm/error.log:[02-Apr-2012 23:25:45] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  525. /var/log/php-fpm/error.log:[02-Apr-2012 23:26:16] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  526. /var/log/php-fpm/error.log:[02-Apr-2012 23:26:29] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  527. /var/log/php-fpm/error.log:[02-Apr-2012 23:27:33] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  528. /var/log/php-fpm/error.log:[02-Apr-2012 23:27:53] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  529. /var/log/php-fpm/error.log:[02-Apr-2012 23:28:07] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  530. /var/log/php-fpm/error.log:[02-Apr-2012 23:28:24] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  531. /var/log/php-fpm/error.log:[02-Apr-2012 23:30:10] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  532. /var/log/php-fpm/error.log:[02-Apr-2012 23:30:35] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  533. /var/log/php-fpm/error.log:[02-Apr-2012 23:31:27] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  534. /var/log/php-fpm/error.log:[02-Apr-2012 23:32:56] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  535. /var/log/php-fpm/error.log:[02-Apr-2012 23:34:28] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  536. /var/log/php-fpm/error.log:[02-Apr-2012 23:34:34] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  537. /var/log/php-fpm/error.log:[02-Apr-2012 23:36:12] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  538. /var/log/php-fpm/error.log:[02-Apr-2012 23:36:54] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  539. /var/log/php-fpm/error.log:[02-Apr-2012 23:37:41] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  540. /var/log/php-fpm/error.log:[02-Apr-2012 23:38:29] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  541. /var/log/php-fpm/error.log:[02-Apr-2012 23:38:59] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  542. /var/log/php-fpm/error.log:[02-Apr-2012 23:40:57] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  543. /var/log/php-fpm/error.log:[02-Apr-2012 23:42:00] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  544. /var/log/php-fpm/error.log:[02-Apr-2012 23:43:10] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  545. /var/log/php-fpm/error.log:[02-Apr-2012 23:43:36] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  546. /var/log/php-fpm/error.log:[02-Apr-2012 23:46:00] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  547. /var/log/php-fpm/error.log:[02-Apr-2012 23:47:00] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  548. /var/log/php-fpm/error.log:[02-Apr-2012 23:48:22] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  549. /var/log/php-fpm/error.log:[02-Apr-2012 23:51:44] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  550. /var/log/php-fpm/error.log:[02-Apr-2012 23:52:46] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  551. /var/log/php-fpm/error.log:[02-Apr-2012 23:54:02] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  552. /var/log/php-fpm/error.log:[02-Apr-2012 23:54:39] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  553. /var/log/php-fpm/error.log:[02-Apr-2012 23:54:59] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  554. /var/log/php-fpm/error.log:[02-Apr-2012 23:55:32] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  555. /var/log/php-fpm/error.log:[02-Apr-2012 23:56:10] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  556. /var/log/php-fpm/error.log:[02-Apr-2012 23:57:17] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  557. /var/log/php-fpm/error.log:[02-Apr-2012 23:58:30] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  558. /var/log/php-fpm/error.log:[03-Apr-2012 00:00:09] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  559. /var/log/php-fpm/error.log:[03-Apr-2012 00:01:32] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  560. /var/log/php-fpm/error.log:[03-Apr-2012 00:07:05] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  561. /var/log/php-fpm/error.log:[03-Apr-2012 00:08:35] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  562. /var/log/php-fpm/error.log:[03-Apr-2012 00:08:49] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  563. /var/log/php-fpm/error.log:[03-Apr-2012 00:09:00] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  564. /var/log/php-fpm/error.log:[03-Apr-2012 00:10:25] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  565. /var/log/php-fpm/error.log:[03-Apr-2012 00:12:36] WARNING: [pool www] child 11051, script '/usr/local/nginx/html/index.php' (request: "GET /index.php") execution timed out (129.404192 sec), terminating
  566. /var/log/php-fpm/error.log:[03-Apr-2012 00:12:36] WARNING: [pool www] child 11047, script '/usr/local/nginx/html/index.php' (request: "GET /index.php") execution timed out (131.384113 sec), terminating
  567. /var/log/php-fpm/error.log:[03-Apr-2012 00:12:36] WARNING: [pool www] child 10919, script '/usr/local/nginx/html/index.php' (request: "GET /index.php") execution timed out (130.241938 sec), terminating
  568. /var/log/php-fpm/error.log:[03-Apr-2012 00:12:36] WARNING: [pool www] child 10915, script '/usr/local/nginx/html/index.php' (request: "GET /index.php") execution timed out (131.243549 sec), terminating
  569. /var/log/php-fpm/error.log:[03-Apr-2012 00:12:36] WARNING: [pool www] child 11051 exited on signal 15 (SIGTERM) after 131.680020 seconds from start
  570. /var/log/php-fpm/error.log:[03-Apr-2012 00:12:36] WARNING: [pool www] child 10915 exited on signal 15 (SIGTERM) after 227.723338 seconds from start
  571. /var/log/php-fpm/error.log:[03-Apr-2012 00:12:36] WARNING: [pool www] child 10919 exited on signal 15 (SIGTERM) after 224.723315 seconds from start
  572. /var/log/php-fpm/error.log:[03-Apr-2012 00:12:36] WARNING: [pool www] child 11047 exited on signal 15 (SIGTERM) after 139.701340 seconds from start
  573. /var/log/php-fpm/error.log:[03-Apr-2012 00:14:36] WARNING: [pool www] child 11018, script '/usr/local/nginx/html/index.php' (request: "GET /index.php") execution timed out (130.721944 sec), terminating
  574. /var/log/php-fpm/error.log:[03-Apr-2012 00:14:36] WARNING: [pool www] child 11018 exited on signal 15 (SIGTERM) after 283.694243 seconds from start
  575. /var/log/php-fpm/error.log:[03-Apr-2012 00:15:16] WARNING: [pool www] child 11164, script '/usr/local/nginx/html/index.php' (request: "GET /index.php") execution timed out (130.097493 sec), terminating
  576. /var/log/php-fpm/error.log:[03-Apr-2012 00:15:16] WARNING: [pool www] child 11163, script '/usr/local/nginx/html/index.php' (request: "GET /index.php") execution timed out (158.556506 sec), terminating
  577. /var/log/php-fpm/error.log:[03-Apr-2012 00:15:16] WARNING: [pool www] child 11162, script '/usr/local/nginx/html/index.php' (request: "GET /index.php") execution timed out (159.995461 sec), terminating
  578. /var/log/php-fpm/error.log:[03-Apr-2012 00:15:16] WARNING: [pool www] child 11161, script '/usr/local/nginx/html/index.php' (request: "GET /index.php") execution timed out (159.995931 sec), terminating
  579. /var/log/php-fpm/error.log:[03-Apr-2012 00:15:16] WARNING: [pool www] child 11161 exited on signal 15 (SIGTERM) after 159.998143 seconds from start
  580. /var/log/php-fpm/error.log:[03-Apr-2012 00:15:16] WARNING: [pool www] child 11163 exited on signal 15 (SIGTERM) after 159.985035 seconds from start
  581. /var/log/php-fpm/error.log:[03-Apr-2012 00:15:16] WARNING: [pool www] child 11164 exited on signal 15 (SIGTERM) after 159.983581 seconds from start
  582. /var/log/php-fpm/error.log:[03-Apr-2012 00:15:16] WARNING: [pool www] child 11162 exited on signal 15 (SIGTERM) after 160.000042 seconds from start
  583. /var/log/php-fpm/error.log:[03-Apr-2012 00:17:16] WARNING: [pool www] child 11256, script '/usr/local/nginx/html/index.php' (request: "GET /index.php") execution timed out (159.998645 sec), terminating
  584. /var/log/php-fpm/error.log:[03-Apr-2012 00:17:16] WARNING: [pool www] child 11256 exited on signal 15 (SIGTERM) after 159.999721 seconds from start
  585. /var/log/php-fpm/error.log:[03-Apr-2012 00:17:56] WARNING: [pool www] child 11346, script '/usr/local/nginx/html/index.php' (request: "GET /index.php") execution timed out (159.997337 sec), terminating
  586. /var/log/php-fpm/error.log:[03-Apr-2012 00:17:56] WARNING: [pool www] child 11344, script '/usr/local/nginx/html/index.php' (request: "GET /index.php") execution timed out (159.998943 sec), terminating
  587. /var/log/php-fpm/error.log:[03-Apr-2012 00:17:56] WARNING: [pool www] child 11346 exited on signal 15 (SIGTERM) after 159.998676 seconds from start
  588. /var/log/php-fpm/error.log:[03-Apr-2012 00:17:56] WARNING: [pool www] child 11344 exited on signal 15 (SIGTERM) after 160.002115 seconds from start
  589. /var/log/php-fpm/error.log:[03-Apr-2012 00:21:34] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  590. /var/log/php-fpm/error.log:[03-Apr-2012 00:22:21] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  591. /var/log/php-fpm/error.log:[03-Apr-2012 00:24:50] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  592. /var/log/php-fpm/error.log:[03-Apr-2012 00:25:07] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  593. /var/log/php-fpm/error.log:[03-Apr-2012 00:38:37] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  594. /var/log/php-fpm/error.log:[03-Apr-2012 00:40:08] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  595. /var/log/php-fpm/error.log:[03-Apr-2012 00:41:13] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  596. /var/log/php-fpm/error.log:[03-Apr-2012 00:59:31] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  597. /var/log/php-fpm/error.log:[03-Apr-2012 00:59:46] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  598. /var/log/php-fpm/error.log:[03-Apr-2012 01:00:09] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  599. /var/log/php-fpm/error.log:[03-Apr-2012 01:02:40] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  600. /var/log/php-fpm/error.log:[03-Apr-2012 01:12:18] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  601. /var/log/php-fpm/error.log:[03-Apr-2012 01:17:42] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  602. /var/log/php-fpm/error.log:[03-Apr-2012 01:39:02] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  603. /var/log/php-fpm/error.log:[03-Apr-2012 01:48:20] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  604. /var/log/php-fpm/error.log:[03-Apr-2012 01:50:28] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  605. /var/log/php-fpm/error.log:[03-Apr-2012 01:51:14] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  606. /var/log/php-fpm/error.log:[03-Apr-2012 01:56:05] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  607. /var/log/php-fpm/error.log:[03-Apr-2012 01:56:42] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  608. /var/log/php-fpm/error.log:[03-Apr-2012 01:57:14] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  609. /var/log/php-fpm/error.log:[03-Apr-2012 02:00:29] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  610. /var/log/php-fpm/error.log:[03-Apr-2012 02:01:36] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  611. /var/log/php-fpm/error.log:[03-Apr-2012 02:03:48] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  612. /var/log/php-fpm/error.log:[03-Apr-2012 03:00:12] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  613. /var/log/php-fpm/error.log:[03-Apr-2012 05:28:58] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  614. /var/log/php-fpm/error.log:[03-Apr-2012 05:35:11] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  615. /var/log/php-fpm/error.log:[03-Apr-2012 06:40:57] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  616. /var/log/php-fpm/error.log:[03-Apr-2012 06:42:34] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  617. /var/log/php-fpm/error.log:[03-Apr-2012 06:52:54] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  618. /var/log/php-fpm/error.log:[03-Apr-2012 06:53:04] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  619. /var/log/php-fpm/error.log:[03-Apr-2012 07:02:54] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  620. /var/log/php-fpm/error.log:[03-Apr-2012 07:15:39] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  621. /var/log/php-fpm/error.log:[03-Apr-2012 07:53:24] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  622. /var/log/php-fpm/error.log:[03-Apr-2012 08:10:48] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  623. /var/log/php-fpm/error.log:[03-Apr-2012 08:29:18] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  624. /var/log/php-fpm/error.log:[03-Apr-2012 08:45:25] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  625. /var/log/php-fpm/error.log:[03-Apr-2012 08:46:00] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  626. /var/log/php-fpm/error.log:[03-Apr-2012 08:54:03] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  627. /var/log/php-fpm/error.log:[03-Apr-2012 09:02:19] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  628. /var/log/php-fpm/error.log:[03-Apr-2012 09:07:56] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  629. /var/log/php-fpm/error.log:[03-Apr-2012 09:09:18] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  630. /var/log/php-fpm/error.log:[03-Apr-2012 09:13:31] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  631. /var/log/php-fpm/error.log:[03-Apr-2012 09:17:46] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  632. /var/log/php-fpm/error.log:[03-Apr-2012 09:19:32] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  633. /var/log/php-fpm/error.log:[03-Apr-2012 09:20:00] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  634. /var/log/php-fpm/error.log:[03-Apr-2012 09:20:30] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  635. /var/log/php-fpm/error.log:[03-Apr-2012 09:24:31] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  636. /var/log/php-fpm/error.log:[03-Apr-2012 09:27:20] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  637. /var/log/php-fpm/error.log:[03-Apr-2012 09:41:00] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  638. /var/log/php-fpm/error.log:[03-Apr-2012 09:42:18] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  639. /var/log/php-fpm/error.log:[03-Apr-2012 09:43:12] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  640. /var/log/php-fpm/error.log:[03-Apr-2012 09:43:52] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  641. /var/log/php-fpm/error.log:[03-Apr-2012 09:46:30] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  642. /var/log/php-fpm/error.log:[03-Apr-2012 09:46:59] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  643. /var/log/php-fpm/error.log:[03-Apr-2012 09:52:24] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  644. /var/log/php-fpm/error.log:[03-Apr-2012 09:55:05] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  645. /var/log/php-fpm/error.log:[03-Apr-2012 09:55:16] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  646. /var/log/php-fpm/error.log:[03-Apr-2012 09:56:41] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  647. /var/log/php-fpm/error.log:[03-Apr-2012 09:57:10] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  648. /var/log/php-fpm/error.log:[03-Apr-2012 10:00:08] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  649. /var/log/php-fpm/error.log:[03-Apr-2012 10:00:29] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  650. /var/log/php-fpm/error.log:[03-Apr-2012 10:01:11] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  651. /var/log/php-fpm/error.log:[03-Apr-2012 10:01:45] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  652. /var/log/php-fpm/error.log:[03-Apr-2012 10:03:36] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  653. /var/log/php-fpm/error.log:[03-Apr-2012 10:04:16] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  654. /var/log/php-fpm/error.log:[03-Apr-2012 10:05:05] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  655. /var/log/php-fpm/error.log:[03-Apr-2012 10:06:11] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  656. /var/log/php-fpm/error.log:[03-Apr-2012 10:06:35] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  657. /var/log/php-fpm/error.log:[03-Apr-2012 10:07:43] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  658. /var/log/php-fpm/error.log:[03-Apr-2012 10:08:23] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  659. /var/log/php-fpm/error.log:[03-Apr-2012 10:10:25] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  660. /var/log/php-fpm/error.log:[03-Apr-2012 10:11:21] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  661. /var/log/php-fpm/error.log:[03-Apr-2012 10:12:35] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  662. /var/log/php-fpm/error.log:[03-Apr-2012 10:13:27] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  663. /var/log/php-fpm/error.log:[03-Apr-2012 10:17:02] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  664. /var/log/php-fpm/error.log:[03-Apr-2012 10:17:27] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  665. /var/log/php-fpm/error.log:[03-Apr-2012 10:18:36] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  666. /var/log/php-fpm/error.log:[03-Apr-2012 10:19:55] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  667. /var/log/php-fpm/error.log:[03-Apr-2012 10:23:54] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  668. /var/log/php-fpm/error.log:[03-Apr-2012 10:24:57] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  669. /var/log/php-fpm/error.log:[03-Apr-2012 10:25:43] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
  670. /var/log/php-fpm/error.log:[03-Apr-2012 10:28:15] WARNING: [pool www] child 17325, script '/usr/local/nginx/html/index.php' (request: "GET /index.php") execution timed out (122.458008 sec), terminating
  671. /var/log/php-fpm/error.log:[03-Apr-2012 10:28:15] WARNING: [pool www] child 17325 exited on signal 15 (SIGTERM) after 210.069435 seconds from start
  672. /var/log/php-fpm/error.log:[03-Apr-2012 10:28:55] WARNING: [pool www] child 17337, script '/usr/local/nginx/html/index.php' (request: "POST /index.php") execution timed out (159.459024 sec), terminating
  673. /var/log/php-fpm/error.log:[03-Apr-2012 10:28:55] WARNING: [pool www] child 17336, script '/usr/local/nginx/html/index.php' (request: "GET /index.php") execution timed out (158.482291 sec), terminating
  674. /var/log/php-fpm/error.log:[03-Apr-2012 10:28:55] WARNING: [pool www] child 17327, script '/usr/local/nginx/html/index.php' (request: "GET /index.php") execution timed out (154.468727 sec), terminating
  675. /var/log/php-fpm/error.log:[03-Apr-2012 10:28:55] WARNING: [pool www] child 17327 exited on signal 15 (SIGTERM) after 239.067459 seconds from start
  676. /var/log/php-fpm/error.log:[03-Apr-2012 10:28:55] WARNING: [pool www] child 17336 exited on signal 15 (SIGTERM) after 224.062441 seconds from start
  677. /var/log/php-fpm/error.log:[03-Apr-2012 10:28:55] WARNING: [pool www] child 17337 exited on signal 15 (SIGTERM) after 214.057348 seconds from start
  678. /var/log/php-fpm/error.log:[03-Apr-2012 10:30:55] WARNING: [pool www] child 17435, script '/usr/local/nginx/html/index.php' (request: "GET /index.php") execution timed out (120.028434 sec), terminating
  679. /var/log/php-fpm/error.log:[03-Apr-2012 10:30:55] WARNING: [pool www] child 17434, script '/usr/local/nginx/html/index.php' (request: "GET /index.php") execution timed out (120.030404 sec), terminating
  680. /var/log/php-fpm/error.log:[03-Apr-2012 10:30:55] WARNING: [pool www] child 17433, script '/usr/local/nginx/html/index.php' (request: "GET /index.php") execution timed out (120.031322 sec), terminating
  681. /var/log/php-fpm/error.log:[03-Apr-2012 10:30:55] WARNING: [pool www] child 17435 exited on signal 15 (SIGTERM) after 120.029243 seconds from start
  682. /var/log/php-fpm/error.log:[03-Apr-2012 10:30:55] WARNING: [pool www] child 17433 exited on signal 15 (SIGTERM) after 120.032980 seconds from start
  683. /var/log/php-fpm/error.log:[03-Apr-2012 10:30:55] WARNING: [pool www] child 17434 exited on signal 15 (SIGTERM) after 120.032921 seconds from start
  684. /var/log/php-fpm/error.log:[03-Apr-2012 10:36:07] WARNING: [pool www] seems busy (you may need to increase pm.start_servers, or pm.min/max_spare_servers), spawning 8 children, there are 0 idle, and 9 total children
  685. /var/log/php-fpm/error.log:[03-Apr-2012 10:36:08] WARNING: [pool www] server reached pm.max_children setting (11), consider raising it
  686. /var/log/php-fpm/error.log:[03-Apr-2012 10:53:00] WARNING: [pool www] seems busy (you may need to increase pm.start_servers, or pm.min/max_spare_servers), spawning 8 children, there are 1 idle, and 8 total children
  687. /var/log/php-fpm/error.log:[03-Apr-2012 10:59:34] WARNING: [pool www] seems busy (you may need to increase pm.start_servers, or pm.min/max_spare_servers), spawning 8 children, there are 1 idle, and 9 total children
  688. /var/log/php-fpm/error.log:[03-Apr-2012 11:14:22] ERROR: unable to read what child say: Bad file descriptor (9)
  689. /var/log/php-fpm/error.log:[03-Apr-2012 11:26:25] WARNING: [pool www] seems busy (you may need to increase pm.start_servers, or pm.min/max_spare_servers), spawning 8 children, there are 0 idle, and 9 total children
  690. /var/log/php-fpm/error.log:[03-Apr-2012 11:26:27] WARNING: [pool www] server reached pm.max_children setting (11), consider raising it
  691. /var/log/php-fpm/error.log:[03-Apr-2012 11:28:21] WARNING: [pool www] seems busy (you may need to increase pm.start_servers, or pm.min/max_spare_servers), spawning 8 children, there are 0 idle, and 9 total children
  692. /var/log/php-fpm/error.log:[03-Apr-2012 11:28:22] WARNING: [pool www] server reached pm.max_children setting (11), consider raising it
  693. /var/log/php-fpm/error.log:[03-Apr-2012 11:30:53] WARNING: [pool www] seems busy (you may need to increase pm.start_servers, or pm.min/max_spare_servers), spawning 8 children, there are 0 idle, and 9 total children
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement