我安装了PHP-fpm并尝试启动它.出现以下错误:
原文链接:https://www.f2er.com/centos/373584.htmlERROR: unable to bind listening socket for address '127.0.0.1:9000': Address already in use (98)
所以看来PHP-fastcgi正在使用地址:
[root@singularity ~]# netstat -tulnp | grep ":9000" tcp 0 0 127.0.0.1:9000 0.0.0.0:* LISTEN 14595/php-cgi
但我无法阻止PHP-fastcgi服务:
[brad@singularity ~]$sudo /etc/init.d/PHP-fastcgi stop Stopping php-cgi: [Failed]
这是正常的吗?有什么想法吗?或者我可以在哪里寻找错误?