gpt4 book ai didi

python - 如何更新在 ubuntu 上部署在 uWSGI 和 Nginx 上的 flask API 代码?

转载 作者:行者123 更新时间:2023-12-04 18:36:01 24 4
gpt4 key购买 nike

我按照指南在这里设置了我的 api:https://www.digitalocean.com/community/tutorials/how-to-serve-flask-applications-with-uwsgi-and-nginx-on-ubuntu-14-04

它工作得很好,我现在可以成功地对我的 api 进行查询。我的问题是,现在我想调整我的 flask 应用程序/api 来做一些稍微不同的事情并添加功能,但是我正在 ping 的 API 似乎是旧的,尽管我已经从我的 ssh 更新了服务器上的 flask .py 文件。我尝试完成教程中的所有步骤,我得到了它,希望刷新它访问的代码,但似乎没有任何效果。我尝试过的一些命令是:

sudo nginx -t

sudo service nginx restart

我该如何执行此操作并 ping 更新的 flask .py 文件?

根据 nos 的建议,我尝试了:
restart myproject

但这给出了以下错误:
restart: Rejected send message, 1 matched rules; type="method_call", sender=":1.8" (uid=1000 pid=2596 comm="restart thonapi ") interface="com.ubuntu.Upstart0_6.Job" member="Restart" error name="(unset)" requested_reply="0" destination="com.ubuntu.Upstart" (uid=0 pid=1 comm="/sbin/init ")

最佳答案

您正在重新启动 Nginx 但不是 uwsgi。 Nginx 只是一个代理服务器,它将请求路由到 wsgi 应用程序。当您更改 Nginx 的配置时,这些命令将起作用。但是当 wsgi 应用程序发生更改时,您必须重新启动 uwsgi 服务。

您可以通过以下命令重新启动服务。这取决于 init 系统服务正在使用什么

如果服务使用 systemd 系统。
sudo systemctl restart myproject
否则,如果它使用 Upstart 脚本。
sudo restart myproject
如果一切都失败了,您可以使用或者如果您不知道正在使用的 init 系统:
sudo service restart myproject

关于python - 如何更新在 ubuntu 上部署在 uWSGI 和 Nginx 上的 flask API 代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45691272/

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