Skip to main content

Ports Used by MSSQL



Ports Used By the Database Engine

By default, the typical ports used by SQL Server and associated database engine services are: TCP 143340221351434, UDP 1434


Ports Used By Integration Services

The Integration Services service uses DCOM on port 135

Ports Used By Analysis Services

By default, the typical ports used by SQL Server Analysis Services and associated services are: TCP 2382238380443


Ports Used By Reporting Services

By default, the typical ports used by SQL Server Reporting SErvices and associated services are: TCP 80443

Comments

Popular posts from this blog

Javascript Form Validation

It's real simple. All you need to do is call a javascript function in a html  " onsubmit " in the form tag as a javascript return, like this       <form method="post" action="dosomething.php" onsubmit="return validateForm();"> If the code completes ok, the form is then sent to the page listed in "action" http://www.w3schools.com/js/js_form_validation.asp If the function specified in the onsubmit returns false, then the form is not sent to the page mentioned in action.