New Post: Error Attempting to Bounce Clustered Host
When you ran the script and got "Overlapped I/O operation is in progress", did it stop the service as expected? I found a TechNet post saying that on a cluster operation that can be a normal error,...
View ArticleNew Post: Error Attempting to Bounce Clustered Host
Yes, the host instance was stopped.
View ArticleNew Post: Error Attempting to Bounce Clustered Host
Ah, great. If you add the line On Error Resume Next to the beginning of the HostInstanceStart sub and comment out/remove the CheckWMIError() call after objHostInstance.Stop(), does it successfully...
View ArticleNew Post: Error Attempting to Bounce Clustered Host
Yes, that works. Apparently there are a couple of "errors" that are actually just warnings: 1) Overlapped I/O operation is in progress. 2) The BizTalk Host instance "BiDiClusteredHost_FTP" on server...
View ArticleNew Post: Error Attempting to Bounce Clustered Host
Thanks for all of your help trying to figure this one out. I made some code changes based on this information and hopefully got it right. I posted a patch on the v5.5 Downloads page. Here's a direct...
View ArticleNew Post: Error Attempting to Bounce Clustered Host
Still causing the "error" that stops the host instance restarting:BounceAllBizTalkHosts: Host list (BizTalkHosts ItemGroup) not customized. Stopping host instance: BiDiClusteredHost_MSMQ on NJES1S7334...
View ArticleNew Post: Error Attempting to Bounce Clustered Host
OK, I replaced the download with an updated version. I'd like to see the output for BiDiClusteredHost_MSMQ either way. Thanks! Tom
View ArticleNew Post: Error Attempting to Bounce Clustered Host
Same error: From the DeployResults.txt: Target BounceBizTalk: Target BounceAllBizTalkHosts: Host list (BizTalkHosts ItemGroup) not customized. Stopping host instance: BiDiClusteredHost_MSMQ on...
View ArticleNew Post: Error Attempting to Bounce Clustered Host
Sorry about that. I wish I had an environment where I could test this myself... From the output it appears that WMI actually returns three instances of the clustered host, and one of them is not even...
View ArticleNew Post: Error Attempting to Bounce Clustered Host
I wrote a script because I suspected the same thing, here's the results:BiDiClusteredHost_MSMQ (NJES1S7334) - Cluster Type = 3; Host Type = 1; Service State = 4 BiDiClusteredHost_MSMQ (NJES1S7333) -...
View ArticleNew Post: Error Attempting to Bounce Clustered Host
Same... App deployed and started, host instance fails to start.BounceAllBizTalkHosts: Host list (BizTalkHosts ItemGroup) not customized. Stopping host instance: BiDiClusteredHost_MSMQ on NJES1S7334...
View ArticleNew Post: Error Attempting to Bounce Clustered Host
An undocumented ClusterInstanceType value of 3... When I went through the BizTalk Admin MMC code, I found that their query explicitly filtered ClusterInstanceType on values of 0, 1 or 2 and thought it...
View ArticleNew Post: Error Attempting to Bounce Clustered Host
After discovering this cluster type of "3" (unknown?) I went back and modified the script I posted above to now check for specific cluster types. At first I tried "3" and that resulted in the same...
View ArticleNew Post: Error Attempting to Bounce Clustered Host
This error is different, it's Access denied while querying MSCluster_NodeToActiveGroup. In one of your earlier runs this query worked. It says that it queried NJES1S7333 for the active node -- was this...
View ArticleNew Post: Error Attempting to Bounce Clustered Host
Results on 333:Microsoft (R) Windows Script Host Version 5.8 Copyright (C) Microsoft Corporation. All rights reserved. Active Cluster node is Results on 334:Microsoft (R) Windows Script Host Version...
View ArticleNew Post: Error Attempting to Bounce Clustered Host
When you queried for just the virtual (2) instances, did it actually take the service offline and back online as expected? Ignoring all but type = 0 and type = 2 fully worked as expected even when run...
View ArticleNew Post: Error Attempting to Bounce Clustered Host
tfabraham wrote: When you queried for just the virtual (2) instances, did it actually take the service offline and back online as expected? Ignoring all but type = 0 and type = 2 fully worked as...
View ArticleNew Post: Error Attempting to Bounce Clustered Host
I didn't receive an error when trying to start type 1's either. It seems that only type 3 is causing the issue. They can be eliminated directly from the query when retrieving the host instances:"SELECT...
View ArticleNew Post: Error Attempting to Bounce Clustered Host
Also, for your information of how the clustered host instances are behaving... Another modified script:Option Explicit CONST ForReading = 1 ' Host Instance status number CONST...
View ArticleNew Post: Error Attempting to Bounce Clustered Host
There is still an optimization then to prevent the redundant restart on the passive node, which is what GetActiveClusterNode() was supposed to enable. In your very first post that call worked... I...
View Article