http://azure.microsoft.com/en-us/documentation/articles/virtual-machines-provision-sql-server/

Provisioning a SQL Server Virtual Machine on Azure

The Azure virtual machine gallery includes several images that contain Microsoft SQL Server. You can select one of the virtual machine images from the gallery and with a few clicks you can provision the virtual machine to your Azure environment.

In this tutorial, you will:

Connect to the Azure management portal and provision a virtual machine from the gallery

  1. Log in to the Azure Management Portal using your account. If you do not have an Azure account, visit Azure free trial.

  2. On the Azure Management Portal, at the bottom left of the web page, click +NEW, click COMPUTE, click VIRTUAL MACHINE, and then click FROM GALLERY.

  3. On the Create a Virtual Machine page, select a virtual machine image containing SQL Server, and then click the next arrow at the bottom right of the page. For the most up-to-date information on the supported SQL Server images on Azure, see Getting Started with SQL Server in Azure Virtual Machines topic in the SQL Server in Azure Virtual Machines documentation set.

    NOTE:

    If you have a virtual machine created by using the platform image SQL Server Evaluation edition, you cannot upgrade it to a per-minute paid edition image in the gallery. You can choose one of the following two options:

  4. On the Virtual Machine Configuration page, provide the following information:

    • Provide a VIRTUAL MACHINE NAME.
    • In the NEW USER NAME box, type unique user name for the VM local administrator account.
    • In the NEW PASSWORD box, type a strong password. For more information, see Strong Passwords.
    • In the CONFIRM PASSWORD box, retype the password.
    • Select the appropriate SIZE from the drop down list.
    NOTE:

    The size of the virtual machine is specified during provisioning: A2 is the smallest size recommended for production workloads. The minimum recommended size for a virtual machine is A3 when using SQL Server Enterprise Edition. Select A3 or higher when using SQL Server Enterprise Edition. Select A6 when using SQL Server 2012 Enterprise for Data Warehousing image. Select A7 when using SQL Server 2014 for Data Warehousing image. The size selected limits the number of data disks you can configure. For most up-to-date information on available virtual machine sizes and the number of data disks that you can attach to a virtual machine, see Virtual Machine Sizes for Azure.

    Click the next arrow on the bottom right to continue.

  5. On the Virtual machine mode page, provide the following information:

    • Select Standalone Virtual Machine.
    • In the DNS NAME box, provide the first portion of a DNS name of your choice, so that it completes a name in the format TESTNAME.cloudapp.net
    • In the REGION/AFFINITY GROUP/VIRTUAL NETWORK box, select a region where this virtual image will be hosted.

    Click the next arrow to continue.

  6. On the Virtual machine options page:

    • In the AVAILABILITY SET box, select (none).
    • Read and accept the legal terms.

  7. Click the check mark in the bottom right corner to continue.

  8. Wait while Azure prepares your virtual machine. Expect the virtual machine status to proceed through:

    • Starting (Provisioning)
    • Stopped
    • Starting (Provisioning)
    • Running (Provisioning)
    • Running

Open the virtual machine using Remote Desktop and complete setup

  1. When provisioning completes, click on the name of your virtual machine to go to the DASHBOARD page. At the bottom of the page, click Connect.

  2. Choose to open the rpd file using the Windows Remote Desktop program (%windir%\system32\mstsc.exe).

  3. At the Windows Security dialog box, provide the password for the local administrator account that you specified in an earlier step. (You might be asked to verify the credentials of the virtual machine.)

  4. The first time you log on to this virtual machine, several processes may need to complete, including setup of your desktop, Windows updates, and completion of the Windows initial configuration tasks (sysprep). After Windows sysprep completes, SQL Server setup completes configuration tasks. These tasks make cause a short delay while they complete. SELECT @@SERVERNAME may not return the correct name until SQL Server setup completes.

Once you are connected to the virtual machine with Windows Remote Desktop, the virtual machine works much like any other computer. Connect to the default instance of SQL Server with SQL Server Management Studio (running on the virtual machine) in the normal way.

Complete Configuration steps to connect to the virtual machine Using SQL Server Management Studio on another computer

Before you can connect to the instance of SQL Server from the internet, you must complete the following tasks as described in the sections that follow:

The connection path is summarized by the following diagram:

Create a TCP endpoint for the virtual machine

The virtual machine must have an endpoint to listen for incoming TCP communication. This Azure configuration step, directs incoming TCP port traffic to a TCP port that is accessible to the virtual machine.

  1. On the Azure Management Portal, click on VIRTUAL MACHINES.

  2. Click on your newly created virtual machine. Information about your virtual machine is presented.

  3. Near the top of the page, select the ENDPOINTS page, and then at the bottom of the page, click ADD ENDPOINT.

  4. On the Add Endpoint to Virtual Machine page, click Add Endpoint, and then click the Next arrow to continue.

  5. On the Specify the details of the endpoint page, provide the following information.

    • In the NAME box, provide a name for the endpoint.
    • In the PROTOCOL box, select TCP. You may type SQL Server's default listening port 1433 in the Private Port box. Similarly, you may type 57500 in the PUBLIC PORT box. Note that many organizations select different port numbers to avoid malicious security attacks.

  6. Click the check mark to continue. The endpoint is created.

Open TCP ports in the Windows firewall for the default instance of the Database Engine

  1. Connect to the virtual machine via Windows Remote Desktop. Once logged in, on the Start menu, click Run, type WF.msc, and then click OK.

  2. In the Windows Firewall with Advanced Security, in the left pane, right-click Inbound Rules, and then click New Rule in the action pane.

  3. In the Rule Type dialog box, select Port, and then click Next.

  4. In the Protocol and Ports dialog box, select TCP. Select Specific local ports, and then type the port number of the instance of the Database Engine (1433 for the default instance or your choice for the private port in the endpoint step).

  5. Click Next.

  6. In the Action dialog box, select Allow the connection, and then click Next.

    Security Note: Selecting Allow the connection if it is secure can provide additional security. Select this option if you want to configure additional security options in your environment.

  7. In the Profile dialog box, select Public, and then click Next.

    Security Note: Selecting Public allows access over the internet. Whenever possible, select a more restrictive profile.

  8. In the Name dialog box, type a name and description for this rule, and then click Finish.

Open additional ports for other components as needed. For more information, see Configuring the Windows Firewall to Allow SQL Server Access.

Configure SQL Server to listen on the TCP protocol

  1. While connected to the virtual machine by using Remote Desktop, on the Start menu, click All Programs, click Microsoft SQL Server version, click Configuration Tools, and then click SQL Server Configuration Manager.

  2. In SQL Server Configuration Manager, in the console pane, expand SQL Server Network Configuration.

  3. In the console pane, click Protocols for instance name. (The default instance is Protocols for MSSQLSERVER.)

  4. In the details pane, right-click TCP, it should be Enabled for the gallery images by default. For your custom images, click Enable (if its status is Disabled.)

  5. In the console pane, click SQL Server Services. (Restarting the Database Engine can be postponed until completion of the next step.)

  6. In the details pane, right-click SQL Server (instance name) (the default instance is SQL Server (MSSQLSERVER)), and then click Restart, to stop and restart the instance of SQL Server.

  7. Close SQL Server Configuration Manager.

For more information about enabling protocols for the SQL Server Database Engine, see Enable or Disable a Server Network Protocol.

Configure SQL Server for mixed mode authentication

The SQL Server Database Engine cannot use Windows Authentication without domain environment. To connect to the Database Engine from another computer, configure SQL Server for mixed mode authentication. Mixed mode authentication allows both SQL Server Authentication and Windows Authentication. (Configuring mixed mode authentication might not be necessary if you have configured an Azure Virtual Network. For more information, see Connectivity Considerations for SQL Server in Azure Virtual Machines topic in the SQL Server in Azure Virtual Machines documentation set.

  1. While connected to the virtual machine by using Remote Desktop, on the Start menu, click All Programs, click Microsoft SQL Server version, and then click SQL Server Management Studio.

    The first time you open Management Studio it must create the users Management Studio environment. This may take a few moments.

  2. When opening, Management Studio presents the Connect to Server dialog box. In the Server name box, type the name of the virtual machine to connect to the Database Engine with the Object Explorer. (Instead of the virtual machine name you can also use (local) or a single period as the Server name. Select Windows Authentication, and leave your_VM_name\your_local_administrator in the User name box. Click Connect.

  3. In SQL Server Management Studio Object Explorer, right-click the name of the instance of SQL Server (the virtual machine name), and then click Properties.

  4. On the Security page, under Server authentication, select SQL Server and Windows Authentication mode, and then click OK.

  5. In the SQL Server Management Studio dialog box, click OK to acknowledge the requirement to restart SQL Server.

  6. In Object Explorer, right-click your server, and then click Restart. (If SQL Server Agent is running, it must also be restarted.)

  7. In the SQL Server Management Studio dialog box, click Yes to agree that you want to restart SQL Server.

Create SQL Server authentication logins

To connect to the Database Engine from another computer, you must create at least one SQL Server authentication login.

  1. In SQL Server Management Studio Object Explorer, expand the folder of the server instance in which you want to create the new login.

  2. Right-click the Security folder, point to New, and select Login....

  3. In the Login - New dialog box, on the General page, enter the name of the new user in the Login name box.

  4. Select SQL Server authentication.

  5. In the Password box, enter a password for the new user. Enter that password again into the Confirm Password box.

  6. To enforce password policy options for complexity and enforcement, select Enforce password policy (recommended). This is a default option when SQL Server authentication is selected.

  7. To enforce password policy options for expiration, select Enforce password expiration (recommended). Enforce password policy must be selected to enable this checkbox. This is a default option when SQL Server authentication is selected.

  8. To force the user to create a new password after the first time the login is used, select User must change password at next login (Recommended if this login is for someone else to use. If the login is for your own use, do not select this option.) Enforce password expiration must be selected to enable this checkbox. This is a default option when SQL Server authentication is selected.

  9. From the Default database list, select a default database for the login. master is the default for this option. If you have not yet created a user database, leave this set to master.

  10. In the Default language list, leave default as the value.

  11. If this is the first login you are creating, you may want to designate this login as a SQL Server administrator. If so, on the Server Roles page, check sysadmin.

    Security Note: Members of the sysadmin fixed server role have complete control of the Database Engine. You should carefully restrict membership in this role.

  12. Click OK.

For more information about SQL Server logins, see Create a Login.

Determine the DNS name of the virtual machine

To connect to the SQL Server Database Engine from another computer, you must know the Domain Name System (DNS) name of the virtual machine. (This is the name the internet uses to identify the virtual machine. You can use the IP address, but the IP address might change when Azure moves resources for redundancy or maintenance. The DNS name will be stable because it can be redirected to a new IP address.)

  1. In the Azure Management Portal (or from the previous step), select VIRTUAL MACHINES.

  2. On the VIRTUAL MACHINE INSTANCES page, in the DNS NAME column, find and copy the DNS name for the virtual machine which appears preceded by http://. (The user interface might not display the entire name, but you can right-click on it, and select copy.)

Connect to the Database Engine from another computer

  1. On a computer connected to the internet, open SQL Server Management Studio.

  2. In the Connect to Server or Connect to Database Engine dialog box, in the Server name box, enter the DNS name of the virtual machine (determined in the previous task) and a public endpoint port number in the format of DNSName,portnumber such as tutorialtestVM.cloudapp.net,57500.

  3. In the Authentication box, select SQL Server Authentication.

  4. In the Login box, type the name of a login that you created in an earlier task.

  5. In the Password box, type the password of the login that you create in an earlier task.

  6. Click Connect.

Connecting to the Database Engine from your application

If you can connect to an instance of SQL Server running on an Azure virtual machine by using Management Studio, you should be able to connect by using a connection string similar to the following.

connectionString="Server=<DNS_Name>;Integrated Security=false;User ID=<login_name>;Password=<your_password>;"providerName="System.Data.SqlClient"

For more information, see How to Troubleshoot Connecting to the SQL Server Database Engine.

Next Steps

You've seen how to create and configure a SQL Server on an Azure virtual machine using the platform image. When using SQL Server in Azure Virtual Machines, we recommend that you follow the detailed guidance given in the SQL Server in Azure Virtual Machines documentation in the library. This documentation set includes a series of articles and tutorials that provide detailed guidance. The series includes the following sections:

SQL Server in Azure Virtual Machines

Getting Started with SQL Server in Azure Virtual Machines

Getting Ready to Migrate to SQL Server in Azure Virtual Machines

  • How to migrate SQL Server database files and schema between virtual machines in Azure using data disks

SQL Server Deployment in Azure Virtual Machines

  • How to copy SQL Server data and setup files in a data disk from on-premises to Azure using CSUpload
  • How to create a base virtual machine on-premises using Hyper-V
  • How to create a SQL Server virtual machine in Azure using the existing on-premises SQL Server disk
  • How to create a SQL Server virtual machine in Azure using the existing on-premises SQL Server virtual machine
  • How to use PowerShell to set up a SQL Server virtual machine in Azure
  • How to Use Attached Data Disk to Store Database Files

Connectivity Considerations for SQL Server in Azure Virtual Machines

  • Tutorial: Connect to SQL Server in the same cloud service
  • Tutorial: Connect to SQL Server in a different cloud service
  • Tutorial: Connect ASP.NET application to SQL Server in Azure via Virtual Network

Performance Considerations for SQL Server in Azure Virtual Machines

Security Considerations for SQL Server in Azure Virtual Machines

Troubleshooting and Monitoring for SQL Server in Azure Virtual Machines

High Availability and Disaster Recovery for SQL Server in Azure Virtual Machines

  • Tutorial: AlwaysOn Availability Groups in Azure (GUI)
  • Tutorial: AlwaysOn Availability Groups in Azure (PowerShell)
  • Tutorial: AlwaysOn Availability Groups in Hybrid IT (PowerShell)
  • Tutorial: Listener Configuration for AlwaysOn Availability Groups in Azure
  • Tutorial: Listener Configuration for AlwaysOn Availability Groups in HybridIT
  • Tutorial: Database Mirroring for Disaster Recovery in Azure
  • Tutorial: Database Mirroring for Disaster Recovery in Hybrid IT
  • Tutorial: Database Mirroring for High Availability in Azure
  • Tutorial: Log Shipping for Disaster Recovery in Hybrid IT
  • Troubleshooting Availability Group Listener in Azure

Backup and Restore for SQL Server in Azure Virtual Machines

SQL Server Business Intelligence in Azure Virtual Machines

  • Use PowerShell to Create an Azure VM With SQL Server BI and SharePoint 2010
  • Use PowerShell to Create an Azure VM With SQL Server BI and SharePoint 2013
  • Use PowerShell to Create an Azure VM With a Native Mode Report Server

SQL Server Data Warehousing in Azure Virtual Machines

Technical Articles for SQL Server in Azure Virtual Machines

[SQL in Azure] Provisioning a SQL Server Virtual Machine on Azure的更多相关文章

  1. Azure PowerShell (6) 设置单个Virtual Machine Endpoint

    <Windows Azure Platform 系列文章目录> 请注意: - Azure不支持增加Endpoint Range - 最多可以增加Endpoint数量为150 http:// ...

  2. Windows Azure Virtual Machine (35) Azure VM通过Linked DB,执行SQL Job

    <Windows Azure Platform 系列文章目录> 今天遇到一个Case,客户在使用Azure Automation,执行Azure SQL Database 存储过程的时候, ...

  3. [New Portal]Windows Azure Virtual Machine (18) Azure Virtual Machine内部IP和外部IP

    <Windows Azure Platform 系列文章目录> 在开始本章内容之前,请读者熟悉以下2篇博文:       [New Portal]Windows Azure Virtual ...

  4. Windows Azure Virtual Machine (24) Azure VM支持多网卡功能

    <Windows Azure Platform 系列文章目录> Update 2016-03-30 一个VM的多张网卡可以在一个VNet的同一个Subnet子网下,笔者亲自测试过了. 如果 ...

  5. Windows Azure Virtual Machine (34) Azure VM挂载WebDAV

    <Windows Azure Platform 系列文章目录> 之前使用Azure VM,挂载box网盘.发现不能正常挂载,这里简单记录一下. 1.WebDAV的网络映射,需要WebCli ...

  6. Windows Azure Virtual Machine (33) Azure虚拟机删除重建

    <Windows Azure Platform 系列文章目录> 注意:本文介绍的重建Azure虚拟机,必须在同一个订阅内删除重建,必须在同一个订阅内删除重建,必须在同一个订阅内删除重建. ...

  7. How to run a (Tomcat)Java application server on a Azure virtual machine

    http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-applicatio ...

  8. [New Portal]Windows Azure Virtual Machine (22) 使用Azure PowerShell,设置Virtual Machine Endpoint

    <Windows Azure Platform 系列文章目录> 我们可以通过Windows Azure Management Portal,打开Virtual Machine的Endpoi ...

  9. [SDK2.2]Windows Azure Virtual Network (5) 重启、关闭、开启VNet中Virtual Machine

    <Windows Azure Platform 系列文章目录> 我们知道,Windows Azure VM的IP分为以下两种:Internal IP Address和Public VIP ...

随机推荐

  1. 初次使用Microsoft Azure

    一.介绍 在微博上偶然发现微软的Azure有免费申请试用的机会,于是赶快给微软发邮件申请,第二天就通过了. 早就听说过微软在云计算方面发力,但一直没机会试用,之前用过国产的BAE.SAE,用GoAge ...

  2. GO语言中的几个关键思想

    GO语言的设计理念与C++,Java,Python之流大相径庭. 一.没有函数重载 GO语言里面没有函数重载,Java.C#.C++三位大牛都是支持函数重载的,Python虽然不支持函数重载,但是支持 ...

  3. sid-msg.map文件概述

    我这边编写了magic对应的指定文件规则,但是运行的时候发现储存的文件中包含我未指定的数据文件: 在rules下边看的时候,发现有sid-msg.map文件,上网了解下这个文件是干啥的.. 下边文章来 ...

  4. 浅谈bitmap算法

    一.bitmap算法思想 32位机器上,一个整形,比如int a; 在内存中占32bit位,可以用对应的32bit位对应十进制的0-31个数,bitmap算法利用这种思想处理大量数据的排序与查询.  ...

  5. go interface 的坑

    一.概述 [root@node175 demo]# tree . ├── lib │   └── world.go ├── README └── server.go directory, files ...

  6. 【javascript】escape()、encodeURI()、encodeURIComponent()区别详解

    JavaScript中有三个可以对字符串编码的函数,分别是: escape,encodeURI,encodeURIComponent,相应3个解码函数:unescape,decodeURI,decod ...

  7. 【HTML】input标签中alt属性和title属性的比较

    经常用到这两个属性,但是一直没有总结他们的区别.现在我对他们两个的用法做一下总结: 相同点:他们都会飘出一个小浮层,显示文本内容. 不同点: 1.alt只能是元素的属性,而title即可以是元素的属性 ...

  8. SDL相关学习

    原文地址:https://www.cnblogs.com/landmark/category/311822.html 介绍SDL图形库的使用 SDL显示文字 摘要: 前面教程里,我们只显示图片,没提到 ...

  9. 【Linux】字符转换命令tr

    tr (traslate的缩写)可以用来删除一段信息当中的文字,或者是进行文字信息的替换! [root@www ~]# tr [-ds] SET1 ... 选项与参数: -d :删除信息当中的 SET ...

  10. git web开发版本管理

    使用git来管理web开发: 我们需要做的事情 : 1,在服务器建立版本仓库: 2,在服务器建立稳定版本的站点,编写版本仓库的hooks: 3,在开发服务器上提交开发版本: 下面一步一步来:(注意建立 ...