- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在我的 Debian7 VPS 上安装了 Anaconda Python3.6,并且 uwsgi 是通过pip安装的。
当我使用 uwsgi 在命令行中使用 .ini 部署我的 flask 应用程序时,一切都很好 文件:
[uwsgi]
master = true
processes = 1
threads = 1
wsgi-file = /usr/local/anaconda3/envs/p3/myApp.py
callable = app
http-socket = 0.0.0.0:5050
virtualenv = /usr/local/anaconda3/envs/p3
部署成功:
root@server58 envs/p3# uwsgi myApp.ini
[uWSGI] getting INI configuration from myApp.ini
*** Starting uWSGI 2.0.15 (64bit) on [Wed May 3 21:38:50 2017] ***
compiled with version: 4.7.2 on 25 April 2017 09:17:47
os: Linux-2.6.32-042stab116.1 #1 SMP Wed May 4 16:21:02 MSK 2016
nodename: server58.mainpacket.com
machine: x86_64
clock source: unix
pcre jit disabled
detected number of CPU cores: 1
current working directory: /usr/local/anaconda3/envs/p3
detected binary path: /usr/local/anaconda3/bin/uwsgi
uWSGI running as root, you can use --uid/--gid/--chroot options
*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
your processes number limit is 514887
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to TCP address 0.0.0.0:5050 fd 3
Python version: 3.6.0 |Anaconda 4.3.0 (64-bit)| (default, Dec 23 2016, 12:22:00) [GCC 4.4.7 20120313 (Red Hat 4.4.7-1)]
Set PythonHome to /usr/local/anaconda3/envs/p3
Python main interpreter initialized at 0x12e22a0
python threads support enabled
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 145536 bytes (142 KB) for 1 cores
*** Operational MODE: single process ***
WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x12e22a0 pid: 10409 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 10409)
spawned uWSGI worker 1 (pid: 10411, cores: 1)
[pid: 10411|app: 0|req: 1/1] 113.66.169.110 () {34 vars in 680 bytes} [Wed May 3 21:44:00 2017] GET /func2?op1=sdkfh&op2=385 => generated 17 bytes in 2 msecs (HTTP/1.1 200) 2 headers in 79 bytes (1 switches on core 0)
[pid: 10411|app: 0|req: 2/2] 113.66.169.110 () {34 vars in 643 bytes} [Wed May 3 21:44:01 2017] GET /favicon.ico => generated 233 bytes in 21 msecs (HTTP/1.1 404) 2 headers in 72 bytes (1 switches on core 0)
应用程序响应正确,一切看起来都很好。但是当我将部署放入 supervisor 并使用以下 .conf 文件时:
[program:myApp]
command = /usr/local/anaconda3/bin/uwsgi
/usr/local/anaconda3/envs/p3/myApp.ini
autostart = true
startsecs = 5
startretries = 3
redirect_stderr = true
stdout_logfile = /usr/local/anaconda3/envs/p3/log_file
stdout_logfile_maxbytes = 1MB
stdout_logfile_backup = 5
stopsignal = QUIT
uwsgi 似乎无法启动我的应用程序,日志文件显示:
[uWSGI] getting INI configuration from /usr/local/anaconda3/envs/p3/myApp.ini
*** Starting uWSGI 2.0.15 (64bit) on [Wed May 3 18:42:14 2017] ***
compiled with version: 4.7.2 on 25 April 2017 09:17:47
os: Linux-2.6.32-042stab116.1 #1 SMP Wed May 4 16:21:02 MSK 2016
nodename: server58.mainpacket.com
machine: x86_64
clock source: unix
pcre jit disabled
detected number of CPU cores: 1
current working directory: /
detected binary path: /usr/local/anaconda3/bin/uwsgi
uWSGI running as root, you can use --uid/--gid/--chroot options
*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
your processes number limit is 514887
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to TCP address 0.0.0.0:5050 fd 3
Could not find platform independent libraries <prefix>
Could not find platform dependent libraries <exec_prefix>
Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>]
Python version: 3.6.0 |Continuum Analytics, Inc.| (default, Dec 23 2016, 12:22:00) [GCC 4.4.7 20120313 (Red Hat 4.4.7-1)]
Set PythonHome to /usr/local/anaconda3/envs/p3
Fatal Python error: Py_Initialize: Unable to get the locale encoding
ModuleNotFoundError: No module named 'encodings'
Current thread 0x00007fd6e509a700 (most recent call first):
如果我使用 gunicorn + supervisor 进行部署,效果完美。所以我相信这与 uwsgi 设置有关。但为什么它在命令行中工作正常,却在 supervisor 中失败?知道如何修复吗?
最佳答案
实验了几种方法,发现是uWSGI工作目录的问题。首先,您应该在环境中从源代码构建 uWSGI,稍后您将在其中运行应用程序。
激活Env,然后
cd path-to-env wget https://projects.unbit.it/downloads/uwsgi-2.0.15.tar.gz
tar -xvzf uwsgi-2.0.15.tar.gz
cd uwsgi-2.0.15
python uwsgiconfig.py --build
确保将 uwsgi 复制或软链接(soft link)到/path-to-env/bin 目录,并检查 uWSGI 是否工作。
然后记住将“chdir”选项添加到应用程序的.ini 文件中。就我而言:
[uwsgi]
master = true
processes = 1
threads = 1
chdir = /usr/local/anaconda3/envs/p3
wsgi-file = /usr/local/anaconda3/envs/p3/myApp.py
callable = app
http-socket = 0.0.0.0:5050
virtualenv = /usr/local/anaconda3/envs/p3
在 Supervisor 中设置服务,然后一切正常...
PS。如果你在 root 环境中构建 uwsgi,工作目录应该是/usr/local/anaconda3 。关于python-3.x - uwsgi无法从supervisord启动,但在命令行中工作正常,为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43762754/
uWSGI 主进程有什么用? 和/或我可以在哪里阅读更多相关信息? 我找到了零文档。 最佳答案 您可以找到有关大师的一些信息here和 here 一般来说,主文件负责优雅地重新加载您的应用程序服务器(
我有多个基于 Flask 的 web 应用程序在 docker 容器中运行(它们的进程需要与主机操作系统隔离)。为了运行这些应用程序,我在容器内使用了 uWSGI 服务器。传入的请求应该通过订阅服务器
我正在尝试使用 uwsgi 进行一些非常复杂的配置。从长远来看,我试图让自己的事情变得更容易,自然而然,这样做,我正在使事情变得尽可能困难。 无论如何,我正在寻找魔法变量的完整列表。我能在 Emper
我开始使用 uWSGI,我想知道它的工作人员是否是非阻塞/基于事件的(就像 nginx 一样)。 假设我已经像这样启动了 uWSGI: uwsgi --http :8000 --wsgi-file t
我们的应用程序是为 Python 2.7 编写的。它有一个配置为使用 Python 2.7 的 virtualenv。系统安装的 uWSGI 是用 Python 2.6 构建的。 It seems t
我在这个页面 http://uwsgi-docs.readthedocs.org/en/latest/StatsServer.html并使用 uwsgitop但我不知道如何解释输出。文档也没有透露太多
我看到这里发布了许多 uWSGI 配置,我在工作中遇到的现有应用程序的配置也有填充了 100 到 1000 值的 max-requests。 在一定数量的请求后回收进程的目的是什么?您是否试图避免内存
我正在使用 uWSGI 运行一个 webpy 网络服务器,有些请求花费的时间太长。设置 harakiri 模式后,我注意到请求被终止后会再次重试。 是否可以禁用此行为? 运行命令为: /usr/loc
uwsgi 中的“mule farm”是什么,它有什么用?有一些使用示例吗?我没有在文档或其他任何地方找到任何东西。 最佳答案 一群有名字的骡子 --farm chickens:1,2,3. --fa
在学习Python web开发时候,可能会遇到诸如uwsgi,wsgi等名词,下面通过梳理总结探究它们之间的关系。 CGI CGI,(Common Gateway Interface)通用网关接口,是
我已经使用 uWSGI 部署了一个 WSGI 应用程序,但是 I am not using NGINX .如何使用 uWSGI's internal routing将 http 请求重定向到 http
我正在使用命令在 uWsgi 服务器中测试应用程序, uwsgi --http :9090 --wsgi-file myapp.py --callable app --processes 4 --th
我们有一个工作的 uwsgi 服务器,带有一些 RPC 调用(注意:我们能够使用 uwsgi.rpc 与进程对话,因此它们端的设置很好)。我们发现我们有一些进程没有在 uwsgi 下运行,但我们想要与
我正在尝试为我的 Django 项目设置 uwsgi。它运行良好 ./manage.py runserver 0.0.0.0:9010 但是当我尝试 uwsgi --http :9010 --chd
我是 Linux 开发的新手。我对阅读的文档有点困惑。我的最终目标是托管一个简单的 python 支持的 Web 服务,该服务将检查传入的有效负载,并将其转发到其他服务器。这应该不到 30 行 pyt
我的 Django 应用程序倾向于使用 uwsgi+nginx,谁能分享启动我的 uwsgi 进程的最佳方法?有没有人有调整uwsgi的经验? 最佳答案 在 OSX 上启动 Unice 上的 Upst
从 ini 文件启动 uwsgi 时崩溃,堆栈跟踪如下: Traceback (most recent call last):
我用 Django 编写了一个服务器应用程序,并使用 Tastypie 为移动应用程序提供 API,并使用本地 MySQL 服务器为数据库提供服务。 在进程被杀死或结束之前,查询似乎被缓存了。如果我在
我正在开发一个基于 Python 的应用程序(HTTP -- REST 或 jsonrpc 接口(interface)),它将用于生产自动化测试环境。这将连接到运行所有测试脚本的 Java 客户端。即
我尝试在 nginx+uwsgi、os - debian (3.1.0-1-amd64 x86_64) 上为 django 建立网络服务器 nginx 1.1.8-1,uwsgi 0.9.8.3-1
我是一名优秀的程序员,十分优秀!