如何在pythonanywhere中配置mysql数据库连接以部署使用mysql数据库的flask web应用程序

How to configure mysql database connection in pythonanywhere to deploy a flask webapp that utilises mysql database

提问人:Francis Ngugi 提问时间:11/16/2023 最后编辑:CowFrancis Ngugi 更新时间:11/16/2023 访问量:24

问:

我正在使用 flask 和 mysql 在 python 中构建一个学生管理系统,并且我已经将其部署在 pythonanywhere 中。但是我不知道如何获取mysql服务器的地址

dbconfig = {'host': 'Fra254.mysql.pythonanwhere-services.com',
            'user': 'Fra254',
            'password': 'mediocrity',
            'database': 'user-system',}

错误:

"Unknown MySQL server host 'Fra254.mysql.pythonanwhere-services.com' (-2)")
python mysql 烧瓶

评论

1赞 Glenn 11/16/2023
地址显示在“数据库”选项卡上,并且您拼写错误了 pythonanywhere
0赞 Francis Ngugi 11/17/2023
同样,请指出我拼写错误的地方
0赞 caseneuve 11/17/2023
您在哪里运行代码(本地或PA)?另外,应该有格式。有关更多信息,请查看这些帮助页面:pythonanywhere.com/user/Fra254/databaseshelp.pythonanywhere.com/pages/......database<username>$<database name>

答: 暂无答案