First published on MSDN on Apr 05, 2013
After using the Get-ClusterLog cmdlet to generate the Cluster.log, you may notice the following errors and warnings in the cluster log:
ERR [RHS] s_RhsRpcCreateResType: ERROR_NOT_READY(21)' because of 'Startup routine for ResType MSMQ returned 21.'
WARN [RCM] Failed to load restype 'MSMQ': error 21.
ERR [RHS] s_RhsRpcCreateResType: ERROR_NOT_READY(21)' because of 'Startup routine for ResType MSMQTriggers returned 21.'
WARN [RCM] Failed to load restype 'MSMQTriggers': error 21.
WARN [RCM] ResourceTypeChaseTheOwnerLoop::DoCall: ResType MSMQ's DLL is not present on this node. Attempting to find a good node...
WARN [RCM] ResourceTypeChaseTheOwnerLoop::DoCall: ResType MSMQTriggers's DLL is not present on this node. Attempting to find a good node...
These events are logged because the MSMQ and MSMQ Triggers resource types are registered with the cluster service, but the MSMQ resource DLL cannot be loaded because the MSMQ feature is not installed. The MSMQ and MSMQ Triggers resource types are registered by default when the Failover Clustering feature is installed.
Remove-ClusterResourceType MSMQ
Remove-ClusterResourceType MSMQTriggers
In summary... just ignore them, they are just noise. If they annoy you and you don't plan to use MSMQ, then unregister the MSMQ resource types.
Thanks!
Elden Christensen
Principal PM Manager
Clustering & High-Availability
Microsoft
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.