zoukankan      html  css  js  c++  java
  • 使用powershell 设置 sql server 协议

    Configuring SQL Protocols through Windows PowerShell

    Sometimes we are asked about the possibility of configuring SQL Server protocols through PowerShell.  In SQL Server 2008, the sqlps tool incorporates WMI and SMO into this powerful Windows administrator tool, making it easy to manage SQL Server protocols through PowerShell.

                    To get started, run (elevated, if on Windows Vista or Windows Server 2008) sqlps.exe, which by default is located at the %ProgramFiles%\Microsoft SQL Server\100\Tools\binn\sqlps.exe; or, if your architecture is x64, it is in the same path as above, under your Program Files (x86) directory.

                    Now that you have an Admin SQL PowerShell window, here are some example scripts that you can run to configure your SQL Server instance:

    Get the TCP, NP, and SM objects

    This script is the starting point for manipulating the protocols properties on a local default instance.  To modify this for a named instance, replace “MSSQLSERVER” with the name of your instance.

    $MachineObject = new-object ('Microsoft.SqlServer.Management.Smo.WMI.ManagedComputer') .

    $ProtocolUri = "ManagedComputer[@Name='" + (get-item env:\computername).Value + "']/ServerInstance[@Name='MSSQLSERVER']/ServerProtocol"

     

    $tcp = $MachineObject.getsmoobject($ProtocolUri + "[@Name='Tcp']")

    $np = $MachineObject.getsmoobject($ProtocolUri + "[@Name='Np']")

    $sm = $MachineObject.getsmoobject($ProtocolUri + "[@Name='Sm']")

     

    Enable remote connection protocols

    Once you have the base protocol objects, enabling remote connections is trivial:

    $np.IsEnabled = $true

    $np.alter()

    $tcp.IsEnabled = $true

    $tcp.alter()

    Calling the .alter() method commits changes you make to the registry, and you will need to restart the SQL Server instance for it to pick up these changes.

    More elaborate example: Modifying an instance’s TCP Port

    Once you have the TCP object, you can view the properties of the TCP Ports on the various IP Addresses your SQL Server instance is listening on.  For instance, this command will show the properties of the “IPAll” IP Address:

    $MachineObject.getsmoobject($tcp.urn.value + "/IPAddress[@Name='IPAll']")

    The following commands will make your server listen on the TCP port 3344, by modifying the TcpPort property of the IPAll entry and then committing those changes:

    $MachineObject.getsmoobject($tcp.urn.Value + "/IPAddress[@Name='IPAll']").IPAddressProperties[1].Value = "3344"

    $tcp.alter()

    You can now verify in the SQL Server Configuration Manager that your IPAll setting is now set to listen on TCP Port 3344, and restarting the SQL Server service will result in it now listening on the newly-specified port

  • 相关阅读:
    cadence16.6 中orcad导出网表时ERROR (ORCAP-5004)
    (转)分享一个低功耗项目小小心得
    函数返回值传递
    STM32的SPI问题。
    关于MDK中:RO-data、RW-data、ZI-data
    一个技术汪的开源梦 —— 目录
    一个技术汪的开源梦 —— 微信开发工具包
    一个技术汪的开源梦 —— 公共组件缓存之分布式缓存 Redis 实现篇
    一个技术汪的开源梦 —— 基于 .Net Core 的组件 Nuget 包制作 & 发布
    Quartz.NET Windows 服务示例
  • 原文地址:https://www.cnblogs.com/Amaranthus/p/2132232.html
Copyright © 2011-2022 走看看