gpt4 book ai didi

python - uwsgi/nginx 上的 Flask 应用程序 - 启动时不创建 unix 套接字文件

转载 作者:太空宇宙 更新时间:2023-11-03 11:48:29 24 4
gpt4 key购买 nike

我正在尝试在 uwsgi/nginx 上使用 Flask 应用程序。

正在关注 http://uwsgi-docs.readthedocs.org/en/latest/tutorials/Django_and_nginx.htmlhttp://www.markjberger.com/flask-with-virtualenv-uwsgi-nginx/ ,我可以制作 wiki.ini 文件,

[uwsgi]
vhost = true
socket = /tmp/flask_app.sock
venv = /home/ubuntu/webapp/flask/hello/.env
chdir = /home/ubuntu/webapp/flask/hello
module = flaskapp
callable = app
chmod-socket = 666

我检查了 wiki.ini 文件与 uwsgi --ini wiki.ini 一起正常工作。

然后,我尝试在启动时启动 Flask 应用程序。

sudo update-rc.d uwsgi enable,我可以在启动时启动uwsgi服务,并复制wiki.ini文件到/etc/uwsgi/apps-enabled 目录。

这是 nginx 的 conf 文件。

server {
listen 80;
server_name wiki.example.com;
access_log /var/log/nginx/uwsgi_access.log;
error_log /var/log/nginx/uwsgi_error.log;

location / { try_files $uri @riki; }
location @riki {
include uwsgi_params;
uwsgi_pass unix:/tmp/flask_app.sock;
}

error_page 404 /404.html;
}

但是,当我重新启动我的 ubuntu 服务器时,Flask 应用程序无法运行。我检查了错误日志以找到此错误消息。

2015/11/07 17:48:17 [crit] 1055#0: *1 connect() to 
unix:/tmp/flask_app.sock failed (2: No such file or directory)
while connecting to upstream, client: 68.203.30.28, server: wiki.example.com,

我创建了 /tmp/flask_app.sock 文件并运行 chown -R www-data:www-data/tmp/flask_app.sock 让应用程序运行.

> touch /tmp/flask_app.sock
> sudo chown www-data:www-data /tmp/flask_app.sock
> sudo service uwsgi restart
> sudo service nginx restart

但是,我遇到了另一个连接拒绝错误。

2015/11/07 17:50:38 [error] 1055#0: *4 connect() to 
unix:/tmp/flask_app.sock failed (111: Connection refused) while
connecting to upstream, client: 68.203.30.28,
server: wiki.example.com, request: "GET / HTTP/1.1",
upstream: "uwsgi://unix:/tmp/flask_app.sock:", host: "wiki.example.com"

可能出了什么问题?如何教 uwsgi 创建 unix 域套接字?另外,如何使连接工作?我使用的是 ubuntu 14.04。

编辑

删除 /tmp/flask_app.sock 并运行 uwsgi --ini/etc/uwsgi/apps-enabled/wiki.ini 使应用程序正常运行。

最佳答案

主要问题似乎来自 uwsgi 服务;它就是行不通。

我找到了另一种在启动时启动 uwsgi 的方法:upstart 和 uwsgi --emperor from http://uwsgi-docs.readthedocs.org/en/latest/Upstart.htmlhttp://upstart.ubuntu.com

这个过程只是在 /etc/init 目录下创建一个 flask.conf 文件。 uwsgi --emperor控制uwsgi目录下的所有ini文件。

# simple uWSGI script
# http://uwsgi-docs.readthedocs.org/en/latest/Upstart.html

description "uwsgi tiny instance"
start on runlevel [2345]
stop on runlevel [06]

respawn

exec uwsgi --emperor /etc/uwsgi/apps-enabled

我还必须 sudo update-rc.d uwsgi disable 以便禁用 uwsgi 服务。

我也找到了这个网站http://flaviusim.com/blog/Deploying-Flask-with-nginx-uWSGI-and-Supervisor/用于在启动时调用 uswgi,但我没有测试它。

关于python - uwsgi/nginx 上的 Flask 应用程序 - 启动时不创建 unix 套接字文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33586013/

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