up vote 5 down vote favorite
share [g+] share [fb]

I'm very frustrated. I have a website running on Visual Web Developper 2008 Express with my local database, everything works great. I also have the same web site running on a production server. Everything was working great but tonight I did a "reset" on production.

1) I deleted a couple of table, recreate them and insert data. Everything is ok at this time.

2) I delete ALL the file connected on the FTP.

3) I used the module called "Copy website" in visual studio and copy the site to the website via FTP.

When I log on my website, here is the error I got: Server Error in '/' Application.

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)

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Data.SqlClient.SqlException: 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)


Nothing has changed related to SQL connection, this is OLD code that I always used. My website is completly paralysed because of this and I feel sick inside because I feel there is nothing I can do.

Can someone help me please?

Thanks

DarkJaff

link|improve this question

Can you connect to the SQL server from another machine? Have you accidentally shut it down? – Preet Sangha Sep 8 '09 at 1:14
I get the same error while trying to connect with my SQL management studio. In fact, I never tried that before so I don't know if it's a new behavior or if it's the same thing. This is a production server so I don't know if my sql server is shut down. All I know is that from the web panel, I can access the content of my database without problem... – DarkJaff Sep 8 '09 at 1:34
I would suggest that you sql server is either shut down, or perhaps there is new firewall etc in the way. My suggestion would be to first reboot the sql server box. Then if this continues check with you infrastructure people to see if the SQL server is up and running and accessible from other computers. – Preet Sangha Sep 8 '09 at 2:08
feedback

7 Answers

up vote 4 down vote accepted

Your connection string was probably overriden when you copied your new website version on the server. Please check the connection string in web.config and see if it is valid.

link|improve this answer
In fact, I was using Visual Studio 2005 before and was doing a "Publish to website". What I didn't know was that in the process, Visual studio put the site in debug mode = false juste before compiling. Now that I have Visual Web developper 2008 express and use the copy to web site instead, that was not done. Since my connexion string is based on "Are we on debug or not", it was trying to connect to my dev server ! Thanks! – DarkJaff Sep 8 '09 at 10:45
glad to help :-) – Johannes Rudolph Sep 8 '09 at 10:52
feedback

I've resolved the issue. It was due to the SQL browser service.

Solution to such problem is one among below -

  • Check the spelling of the SQL Server instance name that is specified in the connection string.

  • Use the SQL Server Surface Area Configuration tool to enable SQL Server to accept remote connections over the TCP or named pipes protocols. For more information about the SQL Server Surface Area Configuration Tool, see Surface Area Configuration for Services and Connections.

  • Make sure that you have configured the firewall on the server instance of SQL Server to open ports for SQL Server and the SQL Server Browser port (UDP 1434).

  • Make sure that the SQL Server Browser service is started on the server.

link - http://www.microsoft.com/products/ee/transform.aspx?ProdName=Microsoft+SQL+Server&EvtSrc=MSSQLServer&EvtID=-1

-Jayesh Amarnani

link|improve this answer
feedback

check forthe followings :

Make sure your database engine is configured to accept remote connections

• Start > All Programs > SQL Server 2005 > Configuration Tools > SQL Server Surface Area Configuration • Click on Surface Area Configuration for Services and Connections • Select the instance that is having a problem > Database Engine > Remote Connections • Enable local and remote connections • Restart instance

  1. Check the SQL Server service account

• If you are not using a domain account as a service account (for example if you are using NETWORK SERVICE), you may want to switch this first before proceeding

  1. If you are using a named SQL Server instance, make sure you are using that instance name in your connection strings in your ASweb P.NET application

• Usually the format needed to specify the database server is machinename\instancename • Check your connection string as well

link|improve this answer
feedback

You need to reset IIS or recycle worker process. This issue is getting me mad already. Sometimes when I publish web application on production server this error is appear. I don't know how fight with it.

link|improve this answer
1  
It's a configuration error. Usually an invalid connection string which will not be resolved by a reset. – Rune FS Jan 24 '11 at 10:00
feedback

I had the same problem but found that it was because the password for my Service Account for the Database Engine had expired. The solution was to login to that account, fix this, then set the account so password never expires.

link|improve this answer
feedback

If you server was working and suddenly started erroring out, your server/instance stopped and connection settings were changed somehow. For SQL2008 here is how you can fit this: Start > All Programs > SQL Server 2008 > Configuration Tools > SQL Server Configuration Manager > SQL Server Services. And here you'll see all the instances and their state. The state of the instance you were trying to connect will be stopped. Double click on the instance and then click on connect. It will connect and now go back and run your application, you will be able to connect with no error. This solution assumes the error is not being caused by something wrong in your connection string. I hope this helps someone else who might run into same issue.

link|improve this answer
feedback

I had the same problem with SQL Server 2008 R2 and when I checked "SQL Server Configuration Manager" My SQL Server instance had Stopped. Right Clicking and Starting the Instance solved the issue.

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.