我正在尝试设置Nginx,Unicorn和Rails应用程序以一起工作.Nginx和Nnicorn正在运行,我使用ps命令进行了检查.但是当我尝试访问我的页面时,我却遇到了502 Bad GatewayNginx错误日志包含以下行:2015/03/18 19:53:26 [e...
                
我正在尝试设置Nginx,Unicorn和Rails应用程序以一起工作.
Nginx和Nnicorn正在运行,我使用ps命令进行了检查.
但是当我尝试访问我的页面时,我却遇到了502 Bad Gateway
Nginx错误日志包含以下行:
2015/03/18 19:53:26 [error] 14319#0: *1 connect() to
unix:/var/sockets/unicorn.mypage.sock failed (11: Resource temporarily
unavailable) while connecting to upstream
可能是什么问题?
我的/etc/nginx/conf.d/default.conf
upstream app {
    server unix:/var/sockets/unicorn.mypage.sock fail_timeout=0;
}
server {
    listen 80;
    server_name mypage.com;
    # Application root, as defined previously
    root /home/rails/mypage/public;
    location ^~ /assets/ {
      gzip_static on;
      expires max;
      add_header Cache-Control public;
    }
    try_files $uri/index.html $uri @app;
    location @app {
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $http_host;
        proxy_redirect off;
        proxy_pass http://app;
    }
    error_page 500 502 503 504 /500.html;
    client_max_body_size 4G;
    keepalive_timeout 10;
}
/home/rails/mypage/config/unicorn.rb
working_directory "/home/rails/mypage"
pid "/home/rails/mypage/pids/unicorn.pid"
stderr_path "/home/rails/mypage/log/unicorn.log"
stdout_path "/home/rails/mypage/log/unicorn.log"
listen "/var/sockets/unicorn.mypage.sock", backlog: 1024
worker_processes 2
timeout 30
解决方法:
它看起来像套接字问题,但是套接字关闭时通常是(111:连接被拒绝),所以我认为这是应用程序问题(高负载,执行缓慢等).
尝试减少积压,然后再次查看日志以获取详细信息:
listen "/var/sockets/unicorn.mypage.sock", backlog: 64
number of clients' rel='nofollow' target='_blank'>:backlog => number of clients
本文标题为:ruby-on-rails-Nginx,Unicorn和Rails = 502错误网关
				
        
 
            
        基础教程推荐
- ruby-on-rails – Nginx支持的Rails应用程序中缺少Content-Length Header 2023-09-20
 - R语言多元线性回归实例详解 2022-12-15
 - Ruby on Rails在Ping ++ 平台实现支付 2023-07-22
 - go语言的魔幻旅程14-反射 2023-09-05
 - golang 自然语言处理工具(gohanlp) 2023-09-05
 - R语言学习代码格式一键美化 2022-12-05
 - Go语言实现一个Http Server框架(二) Server的抽象 2023-07-25
 - R语言使用gganimate创建可视化动图 2022-12-10
 - R语言关联规则深入详解 2022-11-08
 - R语言histogram(直方图)的具体使用 2022-10-28
 
    	
    	
    	
    	
    	
    	
    	
    	
						
						
						
						
						
				
				
				
				