在阿里云部署Django程序后,使用uwsgi –ini启动时,发现启动报错,日志如下:
Traceback (most recent call last): File "/data/wwwroot/django_xadmin/django_xadmin/wsgi.py",line 12,in <module> from django.core.wsgi import get_wsgi_application ModuleNotFoundError: No module named 'django' unable to load app 0 (mountpoint='') (callable not found or import error) *** no app loaded. going in full dynamic mode *** *** uWSGI is running in multiple interpreter mode ***
但是通过使用
python manager.py runserver 0.0.0.0:8001
外网通过ip+port是可以访问的。
经过排查发现,是因为环境问题造成的,django_xadmin使用的是虚拟virtualenv环境,而在我们真实环境中,是没有安装Django及相关包的。
找到问题,就好办了,在我们uwsgi.ini文件中进行修改,指定我们虚拟环境home即可,如下:
home = /root/.virtualenvs/env_xadmin
so,再次通过执行
uwsgi --stop xadmin_monitor_master.pid
uwsgi --int uwsgi.ini
这样就可以通过域名正常访问程序了。