0

我有一个放置在 VNet 中的 Azure SQL 托管实例,我需要使用 SSMS 创建一个 Azure VM 以连接到托管实例。

配置它的最简单方法是什么?

4

1 回答 1

0

如果您已经拥有放置实例的 VNet,则可以使用以下脚本:

$scriptUrlBase = 'https://raw.githubusercontent.com/Microsoft/sql-server-samples/master/samples/manage/azure-sql-db-managed-instance/attach-jumpbox'

$parameters = @{
    subscriptionId = '60d9f1df....'
    resourceGroupName = '<resource group where the VM will be placed>'
    virtualMachineName = '<name of the VM>'
    virtualNetworkName = '<Virtual network name where the VM will be placed>'
    subnetName = '<Name of the subnet where the VM will be placed>'
    administratorLogin  = '<RDP user for the VM>'
    administratorLoginPassword  = '<RDP password for the VM>'
}

Invoke-Command -ScriptBlock ([Scriptblock]::Create((iwr ($scriptUrlBase+'/attachJumpbox.ps1?t='+ [DateTime]::Now.Ticks)).Content)) -ArgumentList $parameters, $scriptUrlBase

参数subnetName是可选的,如果省略,脚本将创建新的子网。不要使用托管实例所在的子网名称,因为托管实例和虚拟机不能在同一子网中混合使用。

有关更多详细信息,请参阅https://docs.microsoft.com/en-us/azure/sql-database/sql-database-managed-instance-configure-vm

于 2019-01-17T14:48:12.747 回答