启动php-fpm时,出现以下错误 。
ERROR: unable to bind listening socket for address '127.0.0.1:9000': Address already in use (48)
[25-Jul-2013 06:00:36] ERROR: FPM initialization failed
出现上述问题,有两种可能性:
第一:如上文所述,9000端口已被占用
netstat -ntlp | grep 9000
killall php-pfm
启动php-pfm
第二:php-fpm.conf 未配置listen php-fpm.sock
直接在php-fpm.conf 配置 listen = /tmp/php-cgi.sock
当然,路径自己定义。
转载:http://www.cnlvzi.com/index.php/Index/article/id/141