Infos

Sie befinden sich aktuell in den Archiven des Blogs Techblog - Tim Wanierke für Januar, 2010.

Calendar
Januar 2010
M D M D F S S
« Dez   Feb »
 123
45678910
11121314151617
18192021222324
25262728293031

Archive für Januar 2010

IIS7 Rolle auf einem Windows 2008 Server erneut installieren - schlägt fehl / Error : 80070bc9

1.Uninstall Windows Process Activation Service feature(uncheck the whole sub tree view for the parent node “Windows Process Activation Service” and below)
2.Reboot your system.
3.uninstall IIS. If IIS shows as uninstalled, skip this step
4.Reinstall IIS

WAS feature is the dependent package for the IIS feature package. After WAS uninstall completed, you will find that some files under the floders of inetpub and inetsrv are remoed.

Link : http://forums.iis.net/t/1154548.aspx
Link : http://social.technet.microsoft.com/forums/en-US/winserversetup/thread/1486efdd-1dbb-477a-9c9e-af8a8fb81c24/

Configuring Roles with Server Manager.
Link :   http://technet.microsoft.com/en-us/magazine/2008.03.servermanager.aspx?pr=blog

Windows 2008 Cluster - A physical disk resource may unexpectedly fail or go offline when the IsAlive function is executed on a Windows Server 2008 cluster node

Wir hatten das Problem, dass eine disk in einem Windows 2008 Cluster mit SQL Server 2008 aus einem nicht ersichtlichem Grund offline ging. Der Cluster selber hatte einen check disk auf der disk durchgeführt, dieser check hatte allerdings keine Fehler gefunden.

Letztendlich war die Ursache für diesen Fehler:
“When the IsAlive function is run while a file in the root folder of a Windows Server 2008 cluster node is being accessed, the logic of the IsAlive function is incorrect. For example, Microsoft SQL Server and Microsoft Exchange Server may store temporary files in the root folder, and these files are frequently created and deleted. If these temporary files are accessed while the IsAlive function is being called, the disk resource and any dependent resources may encounter a failed state. This triggers the cluster service restart logic.”

Microsoft hat diesen Fehler als bekannte Ursache für einen Windows 2008 Cluster ( ohne Service Pack 2 ) unter folgendem Artikel veröffentlicht.

Link : http://support.microsoft.com/default.aspx?scid=kb;EN-US;953652
Dieser Hotfix ist im Service Pack 2 für Windows 2008 bereits enthalten.

Man kann dieses Problem auch wie folgt vermeiden:
A physical disk resource remains in the “Online Pending” status, or the Chkdsk utility automatically starts to run on a server that is running Windows Server 2008 or Windows Server 2008 R2

Link : http://support.microsoft.com/kb/977516

NTFS dirty bit / chkdsk / chkntfs

Das NTFS dirty bit wird vom Dateisystem selber gesetzt sobald ein Problem mit dem Dateisystem erkannt wird.

Ob das dirty bit gesetzt ist kann man wie folgt herausfinden:
- chkntfs <Volume>
- fsutil dirty query <Volume>

Das NTFS dirty bit wird über das folgende Kommando wieder zurückgesetzt:
- chkdsk <Volume> /f /r /x

Sollte somit das NTFS dirty bit nicht zurückgesetzt werden, obwohl keine Fehler mehr durch chkdsk gefunden wurden so kann man über folgendes Kommando einen Scan aller Disk mit dem dirty bit beim nächsten start überprüfen lassen.
- chkntfs /d

Chkntfs /D: Stellt den Zustand des Computers mit den Standardeinstellungen wieder her und entfernt Registrierungseinträge, die von “Chkdsk /F” oder “Chkntfs /X” erzeugt wurden. Dies bedeutet, dass beim Start alle Laufwerke überprüft werden und “Chkdsk” dann für die Laufwerke ausgeführt wird, auf denen Verunreinigungen festgestellt wurden.

Links:
http://www.infocellar.com/winxp/chkdsk-and-autochk.htm

http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/chkdsk.mspx?mfr=true

http://support.microsoft.com/?scid=kb%3Ben-us%3B218461&x=13&y=11

|