注意事项:
在虚拟环境中操作,虚拟环境中安装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