我正在端口5000的ubuntu远程服务器上运行flask应用程序。
命令curl http://ip:5000
给出错误curl: (7) Failed to connect to xx.xxx.xxx.x port 5000: Connection refused
我尝试了以下各种链接的解决方案,例如link 1,link 2
尝试1:
sudo ufw allow 5000
尝试2:
if __name__ == '__main__':
app.run(host='0.0.0.0')
尝试3:
PS:如下所示,Flask应用程序正在端口500上运行
root@ubuntu-ner-backend:~# netstat -tupln | grep ':5000'
tcp 0 0 127.0.0.1:5000 0.0.0.0:* LISTEN 1735/python