title | description | services | ms.service | ms.subservice | ms.custom | ms.devlang | ms.topic | author | ms.author | ms.reviewer | manager | ms.date |
---|---|---|---|---|---|---|---|---|---|---|---|---|
Configure P2S - Azure SQL Database Managed Instance | Microsoft Docs |
Connect to an Azure SQL Database Managed Instance using SQL Server Management Studio using a point-to-site connection from an on-premises client computer. |
sql-database |
sql-database |
managed-instance |
conceptual |
srdan-bozovic-msft |
srbozovi |
carlrab, bonova, jovanpop |
craigg |
11/01/2018 |
Quickstart: Configure a point-to-site connection to an Azure SQL Database Managed Instance from on-premises
This quickstart demonstrates how to connect to an Azure SQL Database Managed Instance using SQL Server Management Studio (SSMS) from an on-premises client computer over a point-to-site connection. For information about point-to-site connections, see About Point-to-Site VPN
This quickstart:
- Uses as its starting point the resources created in this quickstart: Create a Managed Instance.
- Requires PowerShell 5.1 and Azure PowerShell 5.4.2 or higher your on-premises client computer.
- Requires the newest version of SQL Server Management Studio (SSMS) on your on-premises client computer
-
Open Powershell on your on-premises client computer.
-
Copy and paste this PowerShell script. This script attaches a VPN Gateway to the Managed Instance virtual network that you created in the Create a Managed Instance quickstart. This script performs the following three steps:
-
Creates and install certificates on client machine
-
Calculates the future VPN Gateway subnet IP range
-
Creates the GatewaySubnet
-
Deploys the Azure Resource Manager template that attaches the VPN Gateway to VPN subnet
$scriptUrlBase = 'https://raw.githubusercontent.com/Microsoft/sql-server-samples/master/samples/manage/azure-sql-db-managed-instance/attach-vpn-gateway' $parameters = @{ subscriptionId = '<subscriptionId>' resourceGroupName = '<resourceGroupName>' virtualNetworkName = '<virtualNetworkName>' certificateNamePrefix = '<certificateNamePrefix>' } Invoke-Command -ScriptBlock ([Scriptblock]::Create((iwr ($scriptUrlBase+'/attachVPNGateway.ps1?t='+ [DateTime]::Now.Ticks)).Content)) -ArgumentList $parameters, $scriptUrlBase
-
-
Provide the requested parameters in the PowerShell script. The values for
<subscriptionId>
,<resourceGroup>
and<virtualNetworkName>
should match the ones that are used in Create Managed Instance quickstart. The value for<certificateNamePrefix>
can be a string of your choice. -
Execute the PowerShell script.
-
Sign in to the Azure portal.
-
Open the resource group in which you created the virtual network gateway and then open the virtual network gateway resource.
-
Click Point-to-site configuration and then click Download VPN client.
-
Extract the files from the zip file and then open the extracted folder.
-
Navigate to the WindowsAmd64 folder and open the VpnClientSetupAmd64.exe file.
-
If you receive a Windows protected your PC message, click More info and then click Run anyway.
-
Click Yes in the User Account Control dialog box to proceed.
-
In the MyNewVNet dialog box, click Yes to install a Vpn Client for MyNewVNet.
-
Go to VPN connections on your client computer and click MyNewVNet to establish a connection to this VNet.
-
Click Connect.
-
In the MyNewVNet dialog box, click Connect.
-
When prompted that Connection Manager needs elevated privilege to update your route table, click Continue.
-
Click Yes in the User Account Control dialog box to proceed.
You have established a VPN connection to your Managed Instance VNet.
-
On the on-premises client computer, open SQL Server Management Studio (SSMS).
-
In the Connect to Server dialog box, enter the fully qualified host name for your Managed Instance in the Server name box, select SQL Server Authentication, provide your login and password, and then click Connect.
After you connect, you can view your system and user databases in the Databases node, and various objects in the Security, Server Objects, Replication, Management, SQL Server Agent, and XEvent Profiler nodes.
- For a quickstart showing how to connect from an Azure virtual machine, see Configure a point-to-site connection
- For an overview of the connection options for applications, see Connect your applications to Managed Instance.
- To restore an existing SQL Server database from on-premises to a Managed instance, you can use the Azure Database Migration Service (DMS) for migration to restore from a database backup file or the T-SQL RESTORE command to restore from a database backup file.