码迷,mamicode.com
首页 > 其他好文 > 详细

腾讯云服务器部署flask:一

时间:2020-03-31 01:09:16      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:set   isa   host   info   class   ocs   firewall   hello   idt   

app.py

from flask import Flask,jsonify
app = Flask(__name__)

app.route("/index")
def index():
    print("进入函数")
    return "hello world"


if __name__ == __main__:
    app.run(debug=True,host="0.0.0.0")

不能访问

技术图片

 原因一:防火墙未关闭

service firewalld stop  关闭防火墙

systemctl status firewall  状态为关闭状态

(flask_mini) [root@VM_0_13_centos order]# systemctl status firewalld
● firewalld.service - firewalld - dynamic firewall daemon
   Loaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled; vendor preset: enabled)
   Active: inactive (dead)
     Docs: man:firewalld(1)

 

 原因二:云服务器的安全组,为开启5000端口

 

 

# TODO

腾讯云服务器部署flask:一

标签:set   isa   host   info   class   ocs   firewall   hello   idt   

原文地址:https://www.cnblogs.com/meloncodezhang/p/12602398.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!