How to find SQL Server running port?

后端 未结 13 691
再見小時候
再見小時候 2020-11-28 20:10

Yes I read this How to find the port for MS SQL Server 2008?

no luck.

telnet 1433

returns connection failed, so I must s

13条回答
  •  粉色の甜心
    2020-11-28 20:21

    Try this:

    USE master
    GO
    xp_readerrorlog 0, 1, N'Server is listening on' 
    GO
    

    http://www.mssqltips.com/sqlservertip/2495/identify-sql-server-tcp-ip-port-being-used/

提交回复
热议问题