Closed happyhiroc closed 5 years ago
改为本地ip试试
建议看下uwsgi的文档。
而具体到这个问题,有如下两种临时解决方案(均不可用于线上):
python ${cur_dir}/www/manage.py runserver 0.0.0.0:8000
uwsgi --master --vacuum --processes 10 --http :8000 --chdir ${cur_dir}/www --max-requests 5000 --module wsgi:application --logto ${cur_dir}/www/risk-control.log --pidfile ${cur_dir}/www/risk-control.pid
启动成功后,本地可以127.0.0.1:8000访问系统, 但远程服务器上安装后 按照 http://serverIp:8000/方式无法访问(防火墙已开放8000端口), 对start.sh中 #使用uwsgi启动后台 中127.0.0.1:8000改为0.0.0.0:8000 也不行