Default port for SQL Server

后端 未结 7 1145
夕颜
夕颜 2020-12-08 09:22

I need to know the default port settings for the following services

  1. SQL Server
  2. SQL Browser
  3. SQL Reporting services
  4. SQL Analysis serv
7条回答
  •  旧时难觅i
    2020-12-08 09:51

    We can take a look at three different ways you can identify the port used by an instance of SQL Server.

    1. Reading SQL Server Error Logs
    2. Using SQL Server Configuration Manager
    3. Using Windows Application Event Viewer

      USE master
      GO

      xp_readerrorlog 0, 1, N'Server is listening on', 'any', NULL, NULL, N'asc'
      GO

    Identify Port used by SQL Server Database Engine Using SQL Server Configuration Manager

    1. Click Start -> Programs -> Microsoft SQL Server 2008 -> Configuration Tools -> SQL Server Configuration Manager

    2. In SQL Server Configuration Manager, expand SQL Server Network Configuration and then select Protocols for on the left panel. To identify the TCP/IP Port used by the SQL Server Instance, right click onTCP/IP and select Properties from the drop down as shown below.

    For More Help
    http://sqlnetcode.blogspot.com/2011/11/sql-server-identify-tcp-ip-port-being.html

提交回复
热议问题