2
當執行命令:新鮮PHP5-FPM安裝無法啓動
[email protected]:/# start php5-fpm
php5-fpm start/running, process 21234
[email protected]:/# status php5-fpm
php5-fpm stop/waiting
[email protected]:/# tail /var/log/php5-fpm.log
[...] NOTICE: configuration file /etc/php5/fpm/php-fpm.conf test is successful
[...] NOTICE: configuration file /etc/php5/fpm/php-fpm.conf test is successful
[...] NOTICE: configuration file /etc/php5/fpm/php-fpm.conf test is successful
[...] NOTICE: configuration file /etc/php5/fpm/php-fpm.conf test is successful
[...] NOTICE: configuration file /etc/php5/fpm/php-fpm.conf test is successful
當我開始PHP5-FPM,它看起來確定。我檢查狀態,並停止。我檢查錯誤日誌,唯一出現的是php5-fpm測試.conf文件的結果。這表明沒有錯誤..
我/etc/php5/fpm/php-fpm.conf
的conf如下:
[global]
pid = /var/run/php5-fpm.pid
error_log = /var/log/php5-fpm.log
log_level = error
include=/etc/php5/fpm/pool.d/*.conf
我有內pool.d
一個的conf文件,我刪除了文件,以確保這不是罪魁禍首。仍然無濟於事。
有什麼我失蹤了嗎?
你可以改變error_level進行調試並重新啓動嗎?這一次,它應該在你的日誌中給你更多的信息。 – khuderm
@khuderm同樣的事情。這就像它甚至沒有正確應用。在我的'/ etc/init.d/php5-fpm'文件中,它確實顯示'DAEMON_ARGS =「 - daemonize --fpm-config /etc/php5/fpm/php-fpm.conf」'所以我知道它正在使用正確的。它就像它甚至不更新日誌級別.. – sircapsalot
你先生,應得的賞金。這樣做,實際上*確實*吐出了我所面對的錯誤,並且我能夠弄清楚我的問題。繼續並給出答案,我會給你一些代表。 – sircapsalot