NGINX: connect() to unix:/var/run/php7.0-fpm.sock failed (2: No such file or directory)

2022-08-30 11:18:13

我正在尝试遵循这个Ansible教程,同时使用php7为Ubuntu 16.04进行调整。在此消息下方,您将找到我的 Ansible 文件。运行它并尝试在浏览器中访问该页面后,我得到一个404,并在nginx错误日志中显示以下内容:

2016/10/15 13:13:20 [crit] 28771#28771: *7 connect() to unix:/var/run/php7.0-fpm.sock 在连接到上游时失败(2:没有这样的文件或目录),客户端:93.xxx.xxx.xx,服务器:95.xx.xx.xx,请求:“GET / HTTP/1.1”,上游:“fastcgi://unix:/var/run/php7.0-fpm.sock:”,主机:“95.xx.xx.xx”

所以我检查了套接字文件是否存在,它似乎存在,但行为很奇怪:ls

$ sudo ls -l /var/run/php
total 4
-rw-r--r-- 1 root     root     5 Oct 15 13:00 php7.0-fpm.pid
srw-rw---- 1 www-data www-data 0 Oct 15 13:00 php7.0-fpm.sock
$ sudo ls -l /var/run/php7
ls: cannot access '/var/run/php7': No such file or directory
$ sudo ls -l /var/run/php7.0-fpm.sock
ls: cannot access '/var/run/php7.0-fpm.sock': No such file or directory

为什么如果我按名称的一部分搜索它,而当我列出更多甚至全名时,它找不到套接字文件?lsphpphp7php7.0-fpm.sock

最重要的是,我怎样才能用nginx做到这一点呢?欢迎所有提示!

下面我粘贴了我的Ansible文件

---
- hosts: php
  become: true

  tasks:
  - name: install packages
    apt: name={{ item }} update_cache=yes state=latest
    with_items:
      - git
      - mcrypt
      - nginx
      - php-cli
      - php-curl
      - php-fpm
      - php-intl
      - php-json
      - php-mcrypt
      - php-mbstring
      - php-sqlite3
      - php-xml
      - sqlite3

  - name: enable mbstring
    shell: phpenmod mbstring
    notify:
      - restart php7.0-fpm
      - restart nginx

  - name: create /var/www/ directory
    file: dest=/var/www/ state=directory owner=www-data group=www-data mode=0700

  - name: Clone git repository
    git: >
      dest=/var/www/laravel
      repo=https://github.com/laravel/laravel.git
      update=no
    become: true
    become_user: www-data
    register: cloned

  - name: install composer
    shell: curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
    args:
      creates: /usr/local/bin/composer

  - name: composer create-project
    composer: command=create-project working_dir=/var/www/laravel optimize_autoloader=no
    become: true
    become_user: www-data
    when: cloned|changed

  - name: set APP_DEBUG=false
    lineinfile: dest=/var/www/laravel/.env regexp='^APP_DEBUG=' line=APP_DEBUG=false

  - name: set APP_ENV=production
    lineinfile: dest=/var/www/laravel/.env regexp='^APP_ENV=' line=APP_ENV=production

  - name: Configure nginx
    template: src=nginx.conf dest=/etc/nginx/sites-available/default
    notify:
      - restart php5-fpm
      - restart nginx

  handlers:
    - name: restart php7.0-fpm
      service: name=php7.0-fpm state=restarted

    - name: restart nginx
      service: name=nginx state=restarted

    - name: reload nginx
      service: name=nginx state=reloaded

答案 1

有同样的问题。解决方案非常简单。

在nginx conf文件中,您正在尝试上游

unix:/var/run/php7.0-fpm.sock

正确的路径是

unix:/var/run/php/php7.0-fpm.sock


文档中提到了这一点

Nginx使用Unix域套接字与PHP-FPM通信。套接字映射到文件系统上的路径,我们的 PHP 7 安装默认使用新路径:

5 菲律宾比索/var/run/php5-fpm.sock

7 菲律宾比索/var/run/php/php7.0-fpm.sock


答案 2

在Ubuntu 18.04中,我的问题是它当前使用的是PHP 7.2,但站点可用的默认文件有:

fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;

更新该行上的版本,使其成为7.2而不是7.0,为我解决了这个问题。

fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;


推荐