question

NADIPINENI85 avatar image
NADIPINENI85 asked

what are the ports we are using in sql server except 1433?

what are the ports we are using in sql server except 1433?
sql-server
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Pavel Pawlowski avatar image
Pavel Pawlowski answered
Default ports are in table below: Service Port Port type Note SQL Server Engine 1433 TCP SQL Server Browser 1434 UDP SSAS 2383 TCP SSIS 135 TCP Cannot be changed SSRS 80 TCP However those are default ports. If you run named instances, than by default htose instances are running on dynamic ports, which can be changed to fixed one in the SQL Server Configuration manager.
2 comments
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

NADIPINENI85 avatar image NADIPINENI85 commented ·
Thanks pavel
0 Likes 0 ·
askmlx121 avatar image askmlx121 commented ·
Good.......great
0 Likes 0 ·
ThomasRushton avatar image
ThomasRushton answered
In addition to @Pavel's response, you may also need Port 2382 for the SSAS browser. You can see which address & port an instance of SQL Server is running with the following bit of code: select distinct local_net_address, local_tcp_port from sys.dm_exec_connections where net_transport = 'TCP'
2 comments
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Pavel Pawlowski avatar image Pavel Pawlowski commented ·
Good point Thomas.. Missed the 2382 somehow.
1 Like 1 ·
askmlx121 avatar image askmlx121 commented ·
Nice super
0 Likes 0 ·

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.