vote up 6 vote down star
1

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 services

I neeed to know the port settings for these services for different versions of SQL Server (2000,2005,2008)

Also let me know whether the default port setting will change based on sql server versions

Thanks in advance.

flag

70% accept rate
Is this a Jeopardy clue or some kind of demand? I would suggest rewording to keep with the question and answer format. – spoulson Sep 30 '08 at 12:52
Is there a category for "really, you should google it". Googling "sql server port" got me this, as the top link: support.microsoft.com/kb/287932. "INF: TCP Ports Needed for Communication to SQL Server Through a Firewall". But points (literally) for asking. – Nic Wise Sep 30 '08 at 13:04

4 Answers

vote up 16 vote down check
  1. The default SQL Server port is 1433 but only if it's a default install. Named instances get a random port number.

  2. The browser service runs on port UDP 1434.

  3. Reporting services is a web service - so it's port 80, or 443 if it's SSL enabled.

  4. Analysis services is 2382 but only if it's a default install. Named instances get a random port number.

link|flag
vote up -1 vote down

how can i change the default port for sql server 2005 reporting services.

link|flag
i think you should create a new question for that. – Keng Apr 16 at 18:54
vote up 4 vote down

The default, unnamed instance always gets port 1433 for TCP. UDP port 1434 is used by the SQL Browser service to allow named instances to be located. In SQL Server 2000 the first instance to be started took this role.

Non-default instances get their own dynamically-allocated port, by default. If necessary, for example to configure a firewall, you can set them explicitly. If you don't want to enable or allow access to SQL Browser, you have to either include the instance's port number in the connection string, or set it up with the Alias tab in cliconfg (SQL Server Client Network Utility) on each client machine.

For more information see SQL Server Browser Service on MSDN.

link|flag
vote up 3 vote down

1433

the default port hasn't changed yet

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.