Good afternoon all,

I am at an loose end with on particular box that is running SQL Express 2008 R2.

Windows Firewall is configured to allow inbound TCP & UDP 1433, 1434. Windows Firewall is configured to allow outbound TCP & UDP on any port.

No software AV/FW currently running on system.

When I try to connect to xxx.xxx.xxx.xxx\sqlexpress, it times out with the following error:

TITLE: Connect to Server
------------------------------

Cannot connect to xxx.xxx.xxx.xxx\SQLEXPRESS.

------------------------------
ADDITIONAL INFORMATION:

A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified) (Microsoft SQL Server, Error: -1)

For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&EvtSrc=MSSQLServer&EvtID=-1&LinkId=20476

------------------------------
BUTTONS:

OK
------------------------------

I have checked that remote connections are allowed on the server.

I have confirmed TCP/IP is enabled and configured in SQL Server Configuration to allow connections on the external IP to 1433.

I have also used Wireshark from my local machine and I can see requests for 1433 UDP going to the remote server.

But using Wireshark on the remote server shows no inbound connection requests for 1433 UDP or anything from my external IP (with filtering to remote RDP from results).

This makes me think it is a firewall issue.

The server is hosted by an external company. Which have control over the PIX in front of our server.

I need to troubleshoot this as much as possible myself....as to be honest this hosting company have no clue on what they are doing.

Might have missed something, if I have please let me know.

Al

link|improve this question
Can you provide the Connection String that you are Using? – Sai Kalyan Akshinthala Jun 24 '11 at 11:18
I have: server-external-ip\SQLEXPRESS – Alex Wilden Jun 24 '11 at 11:20
Server Name is Ok, including that you are providing (Initial Catalog, User Name, Password) Or (Integrated Security = true) right? So, provide the Entire Connection String. There comes the Actuall Problem. – Sai Kalyan Akshinthala Jun 24 '11 at 11:23
Both Windows and SQL authentication do not work. They work on the server itself so no issues with credentials. There is no connection string details to provide as I am using the Management Studio. – Alex Wilden Jun 24 '11 at 11:34
feedback

2 Answers

Here is a simple method to troubleshoot connection issues:

  1. Create an empty file called test.udl using a text editor
  2. Double click the file test.udl, then specify your connection properties
  3. Hit the "Test Connection" button.
link|improve this answer
Resolved this by having the hosting provider to make changes to the pix for the above ports. However it did take nearly 4 hours 30 minutes for such a simple request. – Alex Wilden Jun 26 '11 at 6:34
feedback

I had a similar problem which was solved by going to the "SQL Server Configuration Manager" and making sure that the "SQL Server Browser" was configured to start automatically and was started.

I came across this solution in the answer of this forum post: http://social.msdn.microsoft.com/Forums/en-US/sqlexpress/thread/8cdc71eb-6929-4ae8-a5a8-c1f461bd61b4/

I hope this helps somebody out there.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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