Vithal Wadje
On Which Port Does Sql Server Runs
By Vithal Wadje in .NET on Nov 03 2014
  • Ashu Bahl
    Nov, 2014 18

    The Default port is 1433 for TCP/IP and 1434 for USD connection.

    • 2
  • Jaganathan Bantheswaran
    Nov, 2014 4

    The default port is 1433 (TCP). But you can configure the SQL DB engine to listen the port you want.

    • 2
  • Yadagiri Reddy
    Nov, 2014 19

    By default it is 1433.to know port number follow the below steps in the registry section HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSSQLServer\MSSQLServer\SuperSocketNetLib\Tcp

    • 1
  • Rohit Vyas
    Dec, 2014 17

    Default Port for Sqlserver : 1433 for TCP/IP and 1434 for USD connection. -------------------------------------------------------------------------------- Method 1: using xp_readerrorlog: Execute following stored procedure on the instance where you want to find out port on which SQL Server is running. USE MASTER GO xp_readerrorlog 0, 1, N'Server is listening on' GO -------------------------------------------------------------- Method 2: Configuration Properties a)Go to Windows >> Start >> SQL Server Program Folder >> SQL Server Configuration Manager b)Now go to SQL Server Network Configurations >> Protocols for Your c)Server and go to TCP/IP and right click over it. Now when you scroll down you will notice Port Details.

    • 0
  • Alok Gupta
    Dec, 2014 10

    Default port is 1433 for TCP/IP and 1434 for USD connection.

    • 0
  • Garima Jain
    Dec, 2014 8

    1433

    • 0
  • Garima Jain
    Dec, 2014 8

    Default Port for SQL server is 1433.

    • 0
  • Naresh
    Dec, 2014 2

    1433

    • 0
  • Shweta Lodha
    Nov, 2014 19

    1433

    • 0
  • Pulak deb
    Nov, 2014 12

    IPv6 loopback and IPv4 loopback port(1434) IPv6 unspecified and IPv4 unspecified port(1433)

    • 0
  • Munesh Sharma
    Nov, 2014 6

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

    • 0
  • Vishvajeet Pawar
    Nov, 2014 4

    use default port no 1433

    • 0
  • Vithal Wadje
    Nov, 2014 4

    yes,TCP 1433

    • 0