Problem:
CentOS-Installations-PHP-Fehler wie folgt gemeldet:
[root@ZabbixServer php-7.0.13]# /usr/local/php-5.5.0/sbin/php-fpm [19-Nov-2016 14:01:53] WARNING: Nothing matches the include pattern '/usr/local/php-5.5.0/etc/php-fpm.d/*.conf' from /usr/local/php-5.5.0/etc/php-fpm.conf at line 125. [19-Nov-2016 14:01:53] ERROR: No pool defined. at least one pool section must be specified in config file [19-Nov-2016 14:01:53] ERROR: failed to post process the configuration [19-Nov-2016 14:01:53] ERROR: FPM initialization failed
Ursache:
Aufgrund der Standardeinstellung im PHP -fpm.d-Verzeichnis Es gibt keine conf-Datei, nur die www.conf.default-Datei, daher wird dieser Fehler verursacht.
(Empfohlenes Tutorial: Centos-Nutzungstutorial)
Lösung:
Benennen Sie die Standarddatei www.conf.default in www.conf um. Das kann sein gelöst.
Die spezifische Methode ist wie folgt:
[root@ZabbixServer tmp]# cd /usr/local/php-5.5.0/etc/php-fpm.d/ [root@ZabbixServer php-fpm.d]# ll 总用量 20 -rw-r--r--. 1 root root 18536 11月 19 13:59 www.conf.default [root@ZabbixServer php-fpm.d]# cp www.conf.default www.conf [root@ZabbixServer php-fpm.d]# /usr/local/php-5.5.0/sbin/php-fpm
Empfohlene verwandte Video-Tutorials: Linux-Video-Tutorial
Das obige ist der detaillierte Inhalt vonFehler bei der Installation von PHP auf dem Centos-System. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!