Thursday, September 3, 2009

SBS 2003 IIS won't start - try a Metabase restore

Restoring the Metabase with History Files (IIS 6.0)

To manually restore the metabase

1. From the Start menu, click Run.
2. In the Open box, type cmd, and then click OK.
3. Stop the IIS services by typing iisreset /stop at the command prompt, and then press ENTER. The command prompt displays the following:

Attempting stop...

Internet services successfully stopped

If the IIS services do not stop, and it is possible to restart the computer, type iisreset /stop /rebootonerror, and then press ENTER.
4. Make copies of your current metabase files. At the command prompt, type cd %systemroot%\System32\Inetsrv, and then press ENTER to navigate to the folder where the files are. Next, type copy MBSchema.xml MBSchema.old, and then press ENTER to copy the schema file. Finally, type copy MetaBase.xml Metabase.old, and then press ENTER to copy the metabase configuration file.
5. Locate the metabase history files. At the command prompt, type cd %systemroot%\System32\Inetsrv\History, and then press ENTER.
6. Select the version of history files that you want. At the command prompt, type dir, and then press ENTER. All of the files appear in the following format:

<date> <time> <file size> MBSchema_<identifying number>_0000000000.xml

<date> <time> <file size> MetaBase_<identifying number>_0000000000.xml

When you restore the IIS metabase to a previous version, you will need matching metabase schema and configuration files. Select matching files by their identifying number.
7. Copy the chosen history schema file over the existing metabase schema. At the command prompt, type copy /y MBSchema_<identifying number>_0000000000.xml %systemroot%\System32\Inetsrv\MBSchema.xml, and then press ENTER. With this command, you copy the file and rename it at the same time.
8. Copy the matching history configuration file over the existing metabase configuration. At the command prompt, type copy /y Metabase_<identifying number>_0000000000.xml %systemroot%\System32\Inetsrv\MetaBase.xml, and then press ENTER. Again, this command copies the file and renames it at the same time.

Important

If you mix up the names or copy a schema and configuration file that do not match, the metabase restoration will fail when you start the IIS services.
9. Restart IIS. At the command prompt, type iisreset /start, and then press ENTER. The command prompt displays the following:

Attempting start...

Internet services successfully started

If the IIS services do not restart, repeat these steps beginning at step 4, and copy a different set of history files over the current metabase files.

Small Business Server 2003 generated these errors after a power failure.

MSExchangeMU - Event 1009  - Failed to access the metabase, error code is 80080005 (Server execution failed).

IIS Config - Event 51262 - Unable to decrypt the secure property. Ignoring the property./LM/SmtpSvc/1AdminACL
ErrorCode           : 0x80090006

Service Control manager - Event 7024 - The IIS Admin Service service terminated with service-specific error 2148073478 (0x80090006).

4 comments:

  1. Thank you Jeff and to the power of Google search for helping me solve this problem

    ReplyDelete
  2. This fixed worked for me. Thank you so very much

    ReplyDelete
  3. Been looking and troubleshooting for hours but you saved me!

    I was at the point of re installing everything as suggested in some sites...

    THANK YOU

    ReplyDelete