zoukankan      html  css  js  c++  java
  • 【Vegas原创】如何配置 SQL Server 2005 以允许远程连接

    微软解决方案是:

    1, SQL Server 2005 外围应用配置器上配置本地连接和远程连接为tcp/ip方式及name Pipes

    2, 启用 SQL Server Browser 服务;

    3,  Windows 防火墙中创建例外.

    具体步骤请参见:

         http://support.microsoft.com/kb/914277/zh-cn

         http://support.microsoft.com/kb/914277/zh-tw    

     

    如果以上方法还不行的话,就是因为ipsec指派了之后,DB ADB B不能相互解析到自己的主机名称,所以造成复写写不进去。

    比如:在dtpcdb02中,ping dtsdb01ip地址是通的,但是ping dtsdb01DNSping不通。

     

    终极解决方案:在两台机器的host上加上对方的ip地址和名称。

    步骤:

    1, 搜索hosts文件:C:\windows\system32\drivers\etc\hosts;

    2, 用记事本打开,按下面进行添加。

     

    # Copyright (c) 1993-1999 Microsoft Corp.
    #
    # This 
    is a sample HOSTS file used by Microsoft TCP/IP for Windows.
    #
    # This 
    file contains the mappings of IP addresses to host names. Each
    # entry should be kept 
    on an individual line. The IP address should
    # be placed 
    in the first column followed by the corresponding host name.
    # The IP address 
    and the host name should be separated by at least one
    space.
    #
    # Additionally, comments (such 
    as these) may be inserted on individual
    # lines 
    or following the machine name denoted by a '#' symbol.
    #
    For example:
    #
    #      
    102.54.94.97     rhino.acme.com          # source server
    #       
    38.25.63.10     x.acme.com              # x client host

    127.0.0.1       localhost
    10.91.50.46     dtsdb01
  • 相关阅读:
    uni-app开发经验分享九: 组件传值
    uni-app开发经验分享八: 实现微信APP支付的全过程详解
    CSS3+JS完美实现放大镜模式
    原生JS拖拽
    LeetCode 797. 所有可能的路径
    面试题 02.01. 移除重复节点
    LeetCode 139. 单词拆分
    LeetCode 1436. 旅行终点站
    LeetCode 16. 最接近的三数之和
    Hadoop 3.13在Ubuntu20.04上的单机伪分布式配置
  • 原文地址:https://www.cnblogs.com/amadeuslee/p/3744386.html
Copyright © 2011-2022 走看看