vote up 7 vote down star

I am trying to connect to a Microsoft SQL 2005 server which is not on port 1433. How do I indicate a different port number when connecting to the server using SQL management Studio?

Thank you,

Brett

flag

70% accept rate

5 Answers

vote up 17 vote down check

127.0.0.1,6283 add a comma between the ip and port

link|flag
+1 dude, you saved my life! LOL – jasonco Nov 25 at 23:46
vote up 1 vote down

Using the client manager affects all connections or sets a client machine specific alias.

Use the comma as above: this can be used in an app.config too

It's probably needed if you have firewalls between you and the server too...

link|flag
vote up 2 vote down

If you're connecting to a named instance and UDP is not available when connecting to it then you may need to specify the protocol as well.

Example:

tcp:192.168.1.21\SQL2K5,1443

link|flag
This can be done from the SQL Management studio logon dialog? – Brettski Sep 18 '08 at 14:13
vote up 2 vote down

Another way is to setup an alias in Config Manager. Then simply type that alias name when you want to connect. This makes it much easier and is more prefereable when you have to manage several servers/instances and/or servers on multiple ports and/or multiple protocols. Give them friendly names and it becomes much easier to remember them.

link|flag
vote up 0 vote down

You'll need the SQL Server Configuration Manager. Go to Sql Native Client Configuration, Select Client Protocols, Right Click on TCP/IP and set your default port there.

link|flag

Your Answer

Get an OpenID
or

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