uwsgi启动Django项目时:unable to load app 0 (mountpoint='') (callable not found or import error) *

Posted 秋寻草

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uwsgi启动Django项目时:unable to load app 0 (mountpoint='') (callable not found or import error) *相关的知识,希望对你有一定的参考价值。

说起来有点坑

用命令都能正常启动,但是用配置文件就是不行

提示

unable to load app 0 (mountpoint=‘‘) (callable not found or import error)
*** no app loaded. going in full dynamic mode ***

最后准备睡觉了了,无意间解决了

uwsgi.ini文件的wsgi模块是这样写的,一直报错,网上的都找遍了还是没解决

module = AutoTestSite.wsgi:application //指定wsgi模块

最后修改注释,放到上面,成功启动了

#指定wsgi模块
module = AutoTestSite.wsgi:application

 

就这个问题坑我两天

以上是关于uwsgi启动Django项目时:unable to load app 0 (mountpoint='') (callable not found or import error) *的主要内容,如果未能解决你的问题,请参考以下文章

nginx+uwsgi启动Django项目

使用uwsgi启动django项目

使用postgresql数据库时uwsgi下的django应用程序无法启动

详解django+Nginx+uwsgi 云服务器项目部署

69. Django项目部署 nginx + uwsgi + dwebsocket

Django部署——uwsgi+Nginx(超详细)