1、防火墙开启端口
sudo firewall-cmd --permanent --add-port=8881/tcp
sudo firewall-cmd --reload
2、后台运行
nohup python -u sample.py> sample.log 2>&1 &
3、gunicorn 接口加速
gunicorn -w 2 --threads 6 -b 0.0.0.0:20190 webflask:app
#后台挂起
nohup gunicorn -w 1 --threads 6 -b 0.0.0.0:20198 sample_py:app > sample_py.log 2>&1 &
4、查询端口是否占用
#查看端口占用
netstat -lnp | grep 20300
5、查询脚本是否运行
ps -ef|grep helc6