IIS error: unable to connect to configuration database

After rebooting Windows 2003 Server with IIS, I get the following error message:

Unable to connect to configuration database

in the browser. The error occurs on different pages and with different clients. what I think is the problem with the server.

What can I do to solve this error?

+4
source share
3 answers

A quick web search shows that this error message is probably coming from SharePoint services, and indicates that SharePoint cannot connect to its database.

There seem to be several reasons:

  • SQL database is not running, deleted, or you cannot connect to it (firewall, login credentials, network failure)
  • IIS is not working properly

The latter may be IIS 6.0, configured for IIS 5.0 compatibility mode, or an application pool, configured for 32-bit workflows on a 64-bit system.

+4
source

I had the same problem, and it happened right after updating Windows, hmm ... First of all, someone (Windows Update) changed the user account in the service "Internal Windows Database (MICROSOFT ## SSEE)". Changed to the correct account, and WSS started to work, but with an error (application / error or something else)

This new problem was something that I got for free after I launched the Exchange Analyzer Tool and made some changes to my system that were recommended by the tool.

If I changed my web.config, also look like this (c: /inetpub/wss-dir/web.config):

<!-- Web.Config Configuration File --> <configuration> <system.web> <customErrors mode="RemoteOnly"/> </system.web> </configuration> 

I found that the problem is the access / security issue. The error message told me:

Access to the path "C: \ WINDOWS \ Microsoft.NET \ Framework \ v1.1.4322 \ Temporary ASP.NET files \ root \ 8c91a6b5 \ 649b28ba" is denied.

But it wasn’t really true ... access was denied not to the folder .. \ Temporary ASP.NET Files \ root \ 8c91a6b5 \ 649b28ba, it was in the% TEMP% folder, which I just moved because of an offer from the Exchange analyzer.

Have a nice day!

0
source

Source: https://habr.com/ru/post/1277016/


All Articles