<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: CMS Cluster Summary and the CMSClusterMembers Registry Key</title>
	<atom:link href="http://www.businessobjectstips.com/tips/server/cms-cluster-summary-and-the-cmsclustermembers-registry-key/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.businessobjectstips.com/tips/server/cms-cluster-summary-and-the-cmsclustermembers-registry-key/</link>
	<description>Business Objects tips, tricks, articles, blog, guides...</description>
	<lastBuildDate>Fri, 10 Feb 2012 12:04:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: Julian</title>
		<link>http://www.businessobjectstips.com/tips/server/cms-cluster-summary-and-the-cmsclustermembers-registry-key/comment-page-1/#comment-2138</link>
		<dc:creator>Julian</dc:creator>
		<pubDate>Fri, 04 Nov 2011 11:09:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.businessobjectstips.com/?p=516#comment-2138</guid>
		<description>Hi Nikita, yes, &quot;serverconfig.sh&quot; is really the only method.  You must have at least one CMS running and you should run the command from the machine that has the node/SIA (which must be stopped completely).</description>
		<content:encoded><![CDATA[<p>Hi Nikita, yes, &#8220;serverconfig.sh&#8221; is really the only method.  You must have at least one CMS running and you should run the command from the machine that has the node/SIA (which must be stopped completely).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nikita</title>
		<link>http://www.businessobjectstips.com/tips/server/cms-cluster-summary-and-the-cmsclustermembers-registry-key/comment-page-1/#comment-2135</link>
		<dc:creator>Nikita</dc:creator>
		<pubDate>Wed, 02 Nov 2011 15:38:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.businessobjectstips.com/?p=516#comment-2135</guid>
		<description>Hi,

We are using BOXIR3 and are having 4 nodes in cluster. I want to remove one of the nodes. Can you please suggest me a way to remove the node. Is using serverconfig.sh the correct approach?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>We are using BOXIR3 and are having 4 nodes in cluster. I want to remove one of the nodes. Can you please suggest me a way to remove the node. Is using serverconfig.sh the correct approach?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: VJ</title>
		<link>http://www.businessobjectstips.com/tips/server/cms-cluster-summary-and-the-cmsclustermembers-registry-key/comment-page-1/#comment-2108</link>
		<dc:creator>VJ</dc:creator>
		<pubDate>Fri, 14 Oct 2011 07:01:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.businessobjectstips.com/?p=516#comment-2108</guid>
		<description>Thanks for the suggestion but I am trying to logon to the 2 clusters using a standalone java application.

I use a main method to invoke my logic.

I get a session manager object and then enterprise seesion. It works fine for the first time but second time it throws an exception after getting the session object only. My theory is that since crystalenterprise returns a singelton, it is not able to return a new session object the second time.
Is there a way i can get a new session object every time i connect to a cluster like same as in .net sdk where we do sessionManager = new SessionManager.</description>
		<content:encoded><![CDATA[<p>Thanks for the suggestion but I am trying to logon to the 2 clusters using a standalone java application.</p>
<p>I use a main method to invoke my logic.</p>
<p>I get a session manager object and then enterprise seesion. It works fine for the first time but second time it throws an exception after getting the session object only. My theory is that since crystalenterprise returns a singelton, it is not able to return a new session object the second time.<br />
Is there a way i can get a new session object every time i connect to a cluster like same as in .net sdk where we do sessionManager = new SessionManager.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Julian</title>
		<link>http://www.businessobjectstips.com/tips/server/cms-cluster-summary-and-the-cmsclustermembers-registry-key/comment-page-1/#comment-2105</link>
		<dc:creator>Julian</dc:creator>
		<pubDate>Thu, 13 Oct 2011 11:39:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.businessobjectstips.com/?p=516#comment-2105</guid>
		<description>I assume that you are properly logging off and closing the session.  Please be sure you are doing at least this:
&lt;code&gt;
	if (enterpriseSession != null)
	{
		boIEnterpriseSession.logoff();
		session.invalidate();
		boIEnterpriseSession = null;
	}
&lt;/code&gt;
Now, if the above is already part of what you are doing then I would suggest creating separate Enterprise Session variables, such as boIEnterpriseSessionA and boIEnterpriseSessionB.  Please report back if any of this helped.</description>
		<content:encoded><![CDATA[<p>I assume that you are properly logging off and closing the session.  Please be sure you are doing at least this:<br />
<code><br />
	if (enterpriseSession != null)<br />
	{<br />
		boIEnterpriseSession.logoff();<br />
		session.invalidate();<br />
		boIEnterpriseSession = null;<br />
	}<br />
</code><br />
Now, if the above is already part of what you are doing then I would suggest creating separate Enterprise Session variables, such as boIEnterpriseSessionA and boIEnterpriseSessionB.  Please report back if any of this helped.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: VJ</title>
		<link>http://www.businessobjectstips.com/tips/server/cms-cluster-summary-and-the-cmsclustermembers-registry-key/comment-page-1/#comment-2101</link>
		<dc:creator>VJ</dc:creator>
		<pubDate>Thu, 13 Oct 2011 06:42:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.businessobjectstips.com/?p=516#comment-2101</guid>
		<description>Hello Julian,

I have 2 clusters with 3 servers each. I am using java sdk to logon to one cluster at a time. I logon to first one fine and then log off but then it dosent allow me to logon to 2nd one and gives an error that CMS service not found. If I do the other way around, it again lets me logon to 1st server but fails for the second one. I did some research and found that the issue is with the session oblject because it is a singelton and does not work with the second cluster. Can you please suggest a way I can logon to both servers one by one using java sdk.</description>
		<content:encoded><![CDATA[<p>Hello Julian,</p>
<p>I have 2 clusters with 3 servers each. I am using java sdk to logon to one cluster at a time. I logon to first one fine and then log off but then it dosent allow me to logon to 2nd one and gives an error that CMS service not found. If I do the other way around, it again lets me logon to 1st server but fails for the second one. I did some research and found that the issue is with the session oblject because it is a singelton and does not work with the second cluster. Can you please suggest a way I can logon to both servers one by one using java sdk.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Julian</title>
		<link>http://www.businessobjectstips.com/tips/server/cms-cluster-summary-and-the-cmsclustermembers-registry-key/comment-page-1/#comment-2100</link>
		<dc:creator>Julian</dc:creator>
		<pubDate>Wed, 12 Oct 2011 11:20:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.businessobjectstips.com/?p=516#comment-2100</guid>
		<description>Hi Ilea, I am glad to hear you are cleaning up the servers and then doing a fresh install.  Be sure you start with the highest available full install for your target patch level.

So, my understanding is that you are upgrading in place your database and your FRS (input/output).  In this case you really don&#039;t have many options and clustering will happen automatically during the installation as long as you provide the correct inputs.

I have not done an upgrade of an XI R2 database to XI 3.1, but this is what I recommend trying:

1) Get two test servers, 1 test database, and 1 test location to put your FRS.  Make sure they are configured and running XI R2 successfully.  If you can only get 1 test server this is OK.

2) Shutdown completely all BO services.

3) Wipe the test servers clean of BO.

4) Initiate the install of the highest full install of XI 3.1 available, I think Service Pack 4 is a full install (if not SP3 is).  Point the install at your test database.  Provide the proper password for Administrator.  Complete the install.

5) Stop all BO services on this newly installed server.  Using CCM rename the cluster from the server name to the name you desire.

6) Start all BO services on this newly installed server.  Test, look around

7) You may need to run &quot;update objects&quot; in order to obtain the XI 3.1 versions of the auditing reports and other BO-provided reports and universes.

8 ) If all is well, then leave this running, but shutdown all but the CMS.

9) Go to the second test server, if there is one, and install the same full install as you did to server #1.  Provide the database info and Administrator password as before.  You should see that the installer takes care of setting up the cluster because you are pointing it to a database where a XI 3.1 CMS exists.

10) After both servers are on the same patch version then you can advance 1 first to the next desired FixPack level and follow with the other.

Please share your thoughts on this.  Of course, I would review the BO documents on this.  In place XI 3.1 upgrades are not my forte as I have always had the luxury so far of moving to new servers and databases.

BTW, since you actually have two servers, another alternative is to do a migration upgrade.  If you can get a new production database then you could basically remove one server from the current system.  Install BO XI 3.1 to it and the new database.  Then execute a migration from the old to the new using Import Wizard.  Then when all is migrated, you could shutdown the 2nd server, wipe it and install XI 3.1 on it.</description>
		<content:encoded><![CDATA[<p>Hi Ilea, I am glad to hear you are cleaning up the servers and then doing a fresh install.  Be sure you start with the highest available full install for your target patch level.</p>
<p>So, my understanding is that you are upgrading in place your database and your FRS (input/output).  In this case you really don&#8217;t have many options and clustering will happen automatically during the installation as long as you provide the correct inputs.</p>
<p>I have not done an upgrade of an XI R2 database to XI 3.1, but this is what I recommend trying:</p>
<p>1) Get two test servers, 1 test database, and 1 test location to put your FRS.  Make sure they are configured and running XI R2 successfully.  If you can only get 1 test server this is OK.</p>
<p>2) Shutdown completely all BO services.</p>
<p>3) Wipe the test servers clean of BO.</p>
<p>4) Initiate the install of the highest full install of XI 3.1 available, I think Service Pack 4 is a full install (if not SP3 is).  Point the install at your test database.  Provide the proper password for Administrator.  Complete the install.</p>
<p>5) Stop all BO services on this newly installed server.  Using CCM rename the cluster from the server name to the name you desire.</p>
<p>6) Start all BO services on this newly installed server.  Test, look around</p>
<p>7) You may need to run &#8220;update objects&#8221; in order to obtain the XI 3.1 versions of the auditing reports and other BO-provided reports and universes.</p>
<p>8 ) If all is well, then leave this running, but shutdown all but the CMS.</p>
<p>9) Go to the second test server, if there is one, and install the same full install as you did to server #1.  Provide the database info and Administrator password as before.  You should see that the installer takes care of setting up the cluster because you are pointing it to a database where a XI 3.1 CMS exists.</p>
<p>10) After both servers are on the same patch version then you can advance 1 first to the next desired FixPack level and follow with the other.</p>
<p>Please share your thoughts on this.  Of course, I would review the BO documents on this.  In place XI 3.1 upgrades are not my forte as I have always had the luxury so far of moving to new servers and databases.</p>
<p>BTW, since you actually have two servers, another alternative is to do a migration upgrade.  If you can get a new production database then you could basically remove one server from the current system.  Install BO XI 3.1 to it and the new database.  Then execute a migration from the old to the new using Import Wizard.  Then when all is migrated, you could shutdown the 2nd server, wipe it and install XI 3.1 on it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Julian</title>
		<link>http://www.businessobjectstips.com/tips/server/cms-cluster-summary-and-the-cmsclustermembers-registry-key/comment-page-1/#comment-2099</link>
		<dc:creator>Julian</dc:creator>
		<pubDate>Wed, 12 Oct 2011 10:59:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.businessobjectstips.com/?p=516#comment-2099</guid>
		<description>Hi Kannan, I suspect that there may be something wrong with your clustering, or with the communication between the CMS servers, or between the CMS servers and the Report Servers.  You may want to experiment with different configurations and also look at the logs on the server to see if they point you to any causes.</description>
		<content:encoded><![CDATA[<p>Hi Kannan, I suspect that there may be something wrong with your clustering, or with the communication between the CMS servers, or between the CMS servers and the Report Servers.  You may want to experiment with different configurations and also look at the logs on the server to see if they point you to any causes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ilea N.</title>
		<link>http://www.businessobjectstips.com/tips/server/cms-cluster-summary-and-the-cmsclustermembers-registry-key/comment-page-1/#comment-2096</link>
		<dc:creator>Ilea N.</dc:creator>
		<pubDate>Mon, 10 Oct 2011 16:05:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.businessobjectstips.com/?p=516#comment-2096</guid>
		<description>yes.. its a Windows server.. the production servers have been running BO XI R2.. we are in the process of upgrading them to BO XI 3.1. In-place migration is where we are simply replacing the older version with the new one. Like on sever B, we would be cleaning it and doing a fresh install on it.</description>
		<content:encoded><![CDATA[<p>yes.. its a Windows server.. the production servers have been running BO XI R2.. we are in the process of upgrading them to BO XI 3.1. In-place migration is where we are simply replacing the older version with the new one. Like on sever B, we would be cleaning it and doing a fresh install on it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kannan</title>
		<link>http://www.businessobjectstips.com/tips/server/cms-cluster-summary-and-the-cmsclustermembers-registry-key/comment-page-1/#comment-2092</link>
		<dc:creator>Kannan</dc:creator>
		<pubDate>Fri, 07 Oct 2011 11:30:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.businessobjectstips.com/?p=516#comment-2092</guid>
		<description>Hi Julian ,

We have the BO XI R2 with two CMS server with clustering concepts.Everday more than 400 jobs will run from this server. sometimes some of the daily reports are not ruuning.if i stop any one CMS server then its running. Just i would like to know the reason for these kind of issue?</description>
		<content:encoded><![CDATA[<p>Hi Julian ,</p>
<p>We have the BO XI R2 with two CMS server with clustering concepts.Everday more than 400 jobs will run from this server. sometimes some of the daily reports are not ruuning.if i stop any one CMS server then its running. Just i would like to know the reason for these kind of issue?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Julian</title>
		<link>http://www.businessobjectstips.com/tips/server/cms-cluster-summary-and-the-cmsclustermembers-registry-key/comment-page-1/#comment-2091</link>
		<dc:creator>Julian</dc:creator>
		<pubDate>Fri, 07 Oct 2011 11:24:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.businessobjectstips.com/?p=516#comment-2091</guid>
		<description>Hi Ilea, I assume your are talking about Windows servers, is this correct?  Also, you say this is a migration, but can you explain are the production servers new servers?  Do you have a new database?  You mention &quot;in-place migrations&quot;, but I&#039;m not sure this is one.  Sorry my responses to your questions depends on your answers here.  Also, what version of BO are you currently using?</description>
		<content:encoded><![CDATA[<p>Hi Ilea, I assume your are talking about Windows servers, is this correct?  Also, you say this is a migration, but can you explain are the production servers new servers?  Do you have a new database?  You mention &#8220;in-place migrations&#8221;, but I&#8217;m not sure this is one.  Sorry my responses to your questions depends on your answers here.  Also, what version of BO are you currently using?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

