gpt4 book ai didi

mysql - Google Cloud SQL 连接问题 (C#)

转载 作者:行者123 更新时间:2023-11-29 10:24:05 28 4
gpt4 key购买 nike

我正在连接到 Google Cloud SQL (MySQL) 服务器。我收到错误“无法连接到任何指定的 MySQL 主机”。有人知道发生了什么事吗?连接字符串语法与 GCloud 示例的语法完全匹配,并且我已启用任何 IP 地址访问。我的防火墙没有阻止连接。

我的代码如下:

     string conStr = "Server=xxx.xxx.xxx.xxx;Database=DB_NAME;Uid=USER_NAME;Password=PASSWORD;

try
{
MySqlConnection conn = new MySqlConnection(conStr);
conn.Open();
MessageBox.Show("Connected.");
}
catch (MySql.Data.MySqlClient.MySqlException ex)
{
MessageBox.Show(ex.Message);
}

最佳答案

问题是我已将用户配置为能够从任何主机地址登录,但我没有在 Google Cloud Console 的“授权”页面中将我的 IP 列入白名单。

如果您不想使用Cloud SQL Proxy,则需要将客户端IP列入实例的白名单.

希望这对某人有帮助。

关于mysql - Google Cloud SQL 连接问题 (C#),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48648307/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com