使用 VNET 进行 Azure 数据库部署管道部署

Azure database deployment pipeline deployment using VNET

我有一个从 git SQL 数据库项目创建 dacpac 文件的经典管道。使用 dacpac 文件作为输入,我创建了一个发布管道(经典)。在该发布管道中,我提到了服务器名称、用户 ID、密码。

当我 运行 它时,它给了我错误,

2021-05-03T12:24:22.1809539Z *** Could not deploy package.
2021-05-03T12:24:22.1810872Z Unable to connect to target server 'MyServerIP'. Please verify the connection information such as the server name, login credentials, and firewall rules for the target server.
2021-05-03T12:24:22.1812328Z A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)
2021-05-03T12:24:22.1815108Z The network path was not found
2021-05-03T12:24:22.3850691Z ##[error]Publishing to database 'MyProjectName' on server '172.16.192.71'.
Initializing deployment (Start)
Initializing deployment (Failed)

当我告诉我的客户打开端口 1433 并更改 sql 服务器的防火墙规则时,他拒绝并告诉我您使用虚拟专用网络 VNet 连接数据库服务器。他给了我 vnet 的访问权限。他还没准备好通过 public 端口号公开他的数据库服务器。他告诉我创建网络连接然后访问数据库。现在我很困惑如何在数据库管道中使用 vpn 连接数据库,以便我可以部署我的 dacpac 文件。 如果有任何其他解决方案,欢迎。

感谢 Daniel Mann 的帮助,很高兴听到您解决了问题。我只是帮助你post它作为结束这个问题的答案。

解法:

  • 您在 SQL 服务器所在的位置配置自托管代理本地 VM 存在。现在可以使用了。

这可能对其他社区成员有益。