gpt4 book ai didi

ubuntu - unicorn nginx 上游服务器未启动

转载 作者:太空宇宙 更新时间:2023-11-03 16:43:28 25 4
gpt4 key购买 nike

我的 unicorn 服务器运行良好,但已停止工作,我不知道如何重新启动它。

2011/04/18 15:23:42 [error] 11907#0: *4 connect() to unix:/tmp/sockets/unicorn.sock failed (111: Connection refused) while connecting to upstream, client: 71.131.237.122, server: localhost, request: "GET / HTTP/1.1", upstream: "http://unix:/tmp/sockets/unicorn.sock:/", host: "tacitus"

我的配置文件位于:https://gist.github.com/926006

如能就我的故障排除选项提供任何帮助,我们将不胜感激。

最好的,

蒂姆

最佳答案

我在 nginx 和 unicorn 设置方面遇到了类似的问题。

我每天都在 nginx error.log 中看到这个错误:

failed (11: Resource temporarily unavailable) while connecting to upstream

我修复它的方法是将 unix 套接字更改为 tcp 套接字。

所以改为

upstream unicorn_app {
server unix:/tmp/sockets/unicorn.sock fail_timeout=0;
}

现在我在用

upstream unicorn_app {
server 127.0.0.1:3000 fail_timeout=0;
}

希望对大家有帮助。

关于ubuntu - unicorn nginx 上游服务器未启动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5707938/

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