gpt4 book ai didi

php - 无法为地址 php-fpm 绑定(bind)监听套接字

转载 作者:IT王子 更新时间:2023-10-29 01:04:20 26 4
gpt4 key购买 nike

我按照 https://www.digitalocean.com/community/tutorials/how-to-install-linux-nginx-mysql-php-lemp-stack-on-centos-7 中的说明进行操作,一步一步,但是当我重新启动 php-fpm 时,它失败了。

错误日志:

Error: unable to bind listening socket for address 'var/run/php-fpm.d/www.conf' : no such file or directory Error: FPM initialization failed

环境:VirtualBox安装了CentOS 7,安装了PHP、MariaDB和NginX。

日志/报告:

journalctl 显示:

    localhost.localdomain php-fpm[2574]: Error: unable to bind listening socket for address '/var/run/php-fpm.d/www.conf' : No such file or directory
localhost.localdomain php-fpm[2574]:Error: FPM initialization failed
localhost.localdomain systemd[1]: php-fpm.service: main process exited, code=exited, status=78/n/a
localhost.localdomain systemd[1]: Failed to start the php fastCGI process manager.

状态显示:

    php-fpm.service - the php fastcgi process manager
Loaded: loaded (/usr/lib/systemd/system/php-fpm.service; disabled)
Active: failed (result: exit-cod )
Process: 2639 ExecStart=/usr/sbin/php-fpm --nodaemonize (code=exited,
status=78)
Main PID:2639 (code=exited, status=78)
localhost.localdomain php-fpm[2639]: Error: unable to bind listening socket for address '/var/run/php-fpm.d/www.conf' : No such file or directory
localhost.localdomain php-fpm[2639]: ERROR: FPM initialization failed
localhost.localdomain steam[1]: failed to start the php fastCGI process manager.
localhost.localdomain steam[1]: Unit php-fpm.service entered failed state.

www.conf 是

    [www]
listen = /var/run/php-fpm.d/www.conf
listen.allowed_clients = 127.0.0.1
user = apache
group = apache
pm = dynamic
pm.max_children = 50
pm.start_servers = 5
pm.min_spare_servers = 5
pm.max_spare_servers = 5
slowlog = /var/log/php-fpm/www-slow.log
php_admin_value[error_log] = /var/log/php-fpm/www-error.log
php_admin_flag[log_errors] = on
php_value[session.save_handler] = files
php_value[session.save_path] = /var/lib/php/session

Nginx default.conf 是

    server{
listen 80;
server_name ip address;
root /usr/share/nginx/html;
location / {
try_files $uri $uri/ = 404;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location ~\.php$ {
fastcgi_split_path_info ^(.+?\.php)(./*)$;
fastcgi_pass unix:/var/run/php-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}

并且,检查了 cgi.fix_pathinfo=0。

最佳答案

为 sock 文件创建目录:

mkdir -p /var/run/

关于php - 无法为地址 php-fpm 绑定(bind)监听套接字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29859131/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com