:: error starting php-fpm
|
1 |
[pool www] pm.min_spare_servers(0) must be a positive value |
:: How to fix php-fpm error
+ edit php-fpm.conf
|
1 2 3 4 5 6 7 8 9 |
vi /etc/php5/fpm/php-fpm.conf
## uncomment / change on these line
pm = dynamic
pm.max_children = 50
pm.start_servers = 10
pm.min_spare_servers = 5
pm.max_spare_servers = 35
user = www-data
group = www |
+ restaring php-fpm
|
1 |
/etc/init.d/php-fpm restart |
:: Links
+ Google
+ SupportSages