Skip to content

Latest commit

 

History

History
102 lines (72 loc) · 6.15 KB

sql-database-managed-instance-configure-p2s.md

File metadata and controls

102 lines (72 loc) · 6.15 KB
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

Prerequisites

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

Attach a VPN gateway to your Managed Instance virtual network

  1. Open Powershell on your on-premises client computer.

  2. 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
  3. 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.

  4. Execute the PowerShell script.

Create a VPN connection to your Managed Instance

  1. Sign in to the Azure portal.

  2. Open the resource group in which you created the virtual network gateway and then open the virtual network gateway resource.

    virtual network gateway resource

  3. Click Point-to-site configuration and then click Download VPN client.

    Download VPN client

  4. Extract the files from the zip file and then open the extracted folder.

  5. Navigate to the WindowsAmd64 folder and open the VpnClientSetupAmd64.exe file.

  6. If you receive a Windows protected your PC message, click More info and then click Run anyway.

    Install VPN client\

  7. Click Yes in the User Account Control dialog box to proceed.

  8. In the MyNewVNet dialog box, click Yes to install a Vpn Client for MyNewVNet.

Connect to the VPN connection

  1. Go to VPN connections on your client computer and click MyNewVNet to establish a connection to this VNet.

    VPN connection

  2. Click Connect.

  3. In the MyNewVNet dialog box, click Connect.

    VPN connection

  4. When prompted that Connection Manager needs elevated privilege to update your route table, click Continue.

  5. Click Yes in the User Account Control dialog box to proceed.

    VPN connection

    You have established a VPN connection to your Managed Instance VNet.

Use SSMS to connect to the Managed Instance

  1. On the on-premises client computer, open SQL Server Management Studio (SSMS).

  2. 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.

    ssms 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.

Next steps