zoukankan      html  css  js  c++  java
  • nginx频繁的返回502

    A couple of websites on our DigitalOcean VPS  have a great amount of traffic. Due to this traffic, I ran into the error below (edited for readability).

    [crit] connect() to unix:/var/run/php5-fpm.socket failed 2 No such file or directory

    This was because the amount of concurrent users was starting to get high. Instead of fiddling around too much, I thought it best to simply switch to a TCP/IP fast_param, as it's more scalable by default than using a socket.

    To do this, we need to edit a couple of files.

    PHP5-FPM:

    $ sudo nano /etc/php5/fpm/pool.d/www.conf

    In this file, find the below line and uncomment it.

    ;listen = 127.0.0.1:9000

    If you have already have listen = unix:/var/run/php5-fpm.socket; in there, or another file in the pool.d folder, comment it out or replace it with the TCP/IP.

    Nginx:

    Next, we'll need to edit the Virtual Host config files, which may be located in /etc/nginx/sites-available. Hopefully, you've used one global file for all of your PHP sites, otherwise you'll need to edit multiple files for each site. Look for:

    fastcgi_pass unix:/var/run/php5-fpm.sock;

    Comment it out or replace it with:

    fastcgi_pass 127.0.0.1:9000;

    Now we can get things reloaded.

    $ sudo service nginx reload
    $ sudo service php5-fpm reload

     ==https://www.obstance.com/articles/linux/switching-from-using-a-socket-to-tcpip-in-php-fpm-r32/

  • 相关阅读:
    C# 3.0特性
    C# 4.0特性
    Mvc系统学习9——Areas学习
    MVC系统学习8——AsyncController
    MVC系统学习7—Action的选择过程
    MVC系统学习6—Filter
    MVC系统学习5——验证
    对象排序
    Spring上下文信息获取简单实现
    设计模式
  • 原文地址:https://www.cnblogs.com/qinqiu/p/5596012.html
Copyright © 2011-2022 走看看