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

  • 相关阅读:
    delphi 对TThread扩充TSimpleThread
    delphi 关于命名
    Delphi 实现Ini文件参数与TEdit和TCheckBox绑定(TSimpleParam)
    delphi 操作 TWebBrowser 实现自动填表(JQuery脚本与 OleVariant 方法)
    delphi idhttp 实战用法(TIdhttpEx)
    每周总结(10)
    每周总结(9)(补)
    每周总结(8)
    《大话设计模式》读书笔记(四)
    《大话设计模式》读书笔记(三)
  • 原文地址:https://www.cnblogs.com/Amaranthus/p/2132232.html
Copyright © 2011-2022 走看看