linux上使用nginx、uwsgi部署django项目

参考:CentOS7下部署Django项目详细操作步骤

注意事项:

在虚拟环境中操作,虚拟环境中安装nginx、uwsgi,虚拟环境外需安装uwsgi

-- 临时关闭防火墙:systemctl stop firewalld.service
-- 永久关闭防火墙:systemctl disable firewalld.service

启动nginx或者uwsgi不成功:
-- 在centos下启动nginx出现Failed to start nginx.service:unit not found:

错误的原因就是没有添加nginx服务,所以启动失败:
https://www.cnblogs.com/ansibee/p/8087476.html


--端口被占用或者已经有进程在运行:

#查看Uwsgi进程
ps -ef|grep uwsgi 
#用kill方法把uwsgi进程杀死,然后启动uwsgi
killall -9 uwsgi
posted @ 2019-11-23 09:50  一只小羊  阅读(624)  评论(0编辑  收藏  举报