<?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: Changing a Production XenDesktop 7.1 Site to use SQL Mirroring	</title>
	<atom:link href="https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/</link>
	<description>The Accidental Citrix Admin - The site for those who find themselves supporting Citrix involuntarily or accidentally</description>
	<lastBuildDate>Mon, 06 Sep 2021 21:12:33 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>
	<item>
		<title>
		By: Carl Webster		</title>
		<link>https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-913</link>

		<dc:creator><![CDATA[Carl Webster]]></dc:creator>
		<pubDate>Wed, 16 Aug 2017 18:51:17 +0000</pubDate>
		<guid isPermaLink="false">https://www.carlwebster.com/?p=6943#comment-913</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-912&quot;&gt;Steven Cochrane&lt;/a&gt;.

Just use File Explorer (or similar) to just copy the backup files to the other server(s). It is as easy as that.

Webster]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-912">Steven Cochrane</a>.</p>
<p>Just use File Explorer (or similar) to just copy the backup files to the other server(s). It is as easy as that.</p>
<p>Webster</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Steven Cochrane		</title>
		<link>https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-912</link>

		<dc:creator><![CDATA[Steven Cochrane]]></dc:creator>
		<pubDate>Wed, 16 Aug 2017 18:49:01 +0000</pubDate>
		<guid isPermaLink="false">https://www.carlwebster.com/?p=6943#comment-912</guid>

					<description><![CDATA[I know this thread is from 2015, etc Similar to the post from Goran Jozic

I was planning to do cutover from a standalone SQL server to new SQL servers that would represent the three site DB&#039;s.

The only difference is that your post was including the standalone that that ALSO became the Primary in the Mirror.

What I don&#039;t have any record of is copying the backup files to the two new sql servers that were not part of the site previously.  If I had to take a guess this process could also still be completed? That wouldn&#039;t require a new site to be created would it? For just copying  the DB to new Primary server name?

BTW - Your post is fantastic.  I saved it for reference.]]></description>
			<content:encoded><![CDATA[<p>I know this thread is from 2015, etc Similar to the post from Goran Jozic</p>
<p>I was planning to do cutover from a standalone SQL server to new SQL servers that would represent the three site DB&#8217;s.</p>
<p>The only difference is that your post was including the standalone that that ALSO became the Primary in the Mirror.</p>
<p>What I don&#8217;t have any record of is copying the backup files to the two new sql servers that were not part of the site previously.  If I had to take a guess this process could also still be completed? That wouldn&#8217;t require a new site to be created would it? For just copying  the DB to new Primary server name?</p>
<p>BTW &#8211; Your post is fantastic.  I saved it for reference.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: François Gagné		</title>
		<link>https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-911</link>

		<dc:creator><![CDATA[François Gagné]]></dc:creator>
		<pubDate>Wed, 09 Aug 2017 12:43:00 +0000</pubDate>
		<guid isPermaLink="false">https://www.carlwebster.com/?p=6943#comment-911</guid>

					<description><![CDATA[Hi Carl,
terrific post !

I&#039;have maybe found two errors In the last part of your post when you configure the logging Db and monitoring Db,
line7 in the script &quot;–DBConnection&quot; is missing.
and
line10 and 11
in my opinion you should specify the Site Db instead the logging and monitoring db because without Datastore parameter the default datastore is Site.

for example &quot;Set-LogDBConnection –DBConnection $xxx&quot; is the same as &quot;Set-LogDBConnection -datastore Site –DBConnection $xxx&quot;    

So I think this is the best usage:
Set-LogDBConnection –DBConnection $cs –AdminAddress $controller
Set-MonitorDBConnection –DBConnection $cs –AdminAddress $controller

I also add Set-LogSite commandlet to disable and enable logging before and after performing Set-LogDBConnection.

Set-LogSite -State Disabled –AdminAddress $controller
Set-LogDBConnection blabla blabla
Set-LogSite -State Enabled –AdminAddress $controller

Anyway your post is amazing, and it helped me to understand a lot of things.

keep going

François]]></description>
			<content:encoded><![CDATA[<p>Hi Carl,<br />
terrific post !</p>
<p>I&#8217;have maybe found two errors In the last part of your post when you configure the logging Db and monitoring Db,<br />
line7 in the script &#8220;–DBConnection&#8221; is missing.<br />
and<br />
line10 and 11<br />
in my opinion you should specify the Site Db instead the logging and monitoring db because without Datastore parameter the default datastore is Site.</p>
<p>for example &#8220;Set-LogDBConnection –DBConnection $xxx&#8221; is the same as &#8220;Set-LogDBConnection -datastore Site –DBConnection $xxx&#8221;    </p>
<p>So I think this is the best usage:<br />
Set-LogDBConnection –DBConnection $cs –AdminAddress $controller<br />
Set-MonitorDBConnection –DBConnection $cs –AdminAddress $controller</p>
<p>I also add Set-LogSite commandlet to disable and enable logging before and after performing Set-LogDBConnection.</p>
<p>Set-LogSite -State Disabled –AdminAddress $controller<br />
Set-LogDBConnection blabla blabla<br />
Set-LogSite -State Enabled –AdminAddress $controller</p>
<p>Anyway your post is amazing, and it helped me to understand a lot of things.</p>
<p>keep going</p>
<p>François</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Carl Webster		</title>
		<link>https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-910</link>

		<dc:creator><![CDATA[Carl Webster]]></dc:creator>
		<pubDate>Tue, 07 Mar 2017 10:28:25 +0000</pubDate>
		<guid isPermaLink="false">https://www.carlwebster.com/?p=6943#comment-910</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-909&quot;&gt;Datta&lt;/a&gt;.

Thanks for the very kind words.

Webster]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-909">Datta</a>.</p>
<p>Thanks for the very kind words.</p>
<p>Webster</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Datta		</title>
		<link>https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-909</link>

		<dc:creator><![CDATA[Datta]]></dc:creator>
		<pubDate>Tue, 07 Mar 2017 04:35:33 +0000</pubDate>
		<guid isPermaLink="false">https://www.carlwebster.com/?p=6943#comment-909</guid>

					<description><![CDATA[Your in depth technical information with a simple way to make any citrix admin understand the functionality, hatsoff to you carl. By referring the articles published, i have setup the lab environment and also have made our production environment more robust and highly available.

Keep continuing the good work, You are making many more Citrix admins through out the world. The best Mentor and teacher]]></description>
			<content:encoded><![CDATA[<p>Your in depth technical information with a simple way to make any citrix admin understand the functionality, hatsoff to you carl. By referring the articles published, i have setup the lab environment and also have made our production environment more robust and highly available.</p>
<p>Keep continuing the good work, You are making many more Citrix admins through out the world. The best Mentor and teacher</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Carl Webster		</title>
		<link>https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-908</link>

		<dc:creator><![CDATA[Carl Webster]]></dc:creator>
		<pubDate>Wed, 07 Sep 2016 21:59:53 +0000</pubDate>
		<guid isPermaLink="false">https://www.carlwebster.com/?p=6943#comment-908</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-907&quot;&gt;Knight&lt;/a&gt;.

The AlwaysOn Availability Group Listener is the magic key. That is what you enter for what my article calls the mirror server. Are you really still on 7.1? This article is not applicable to any version after 7.1.

Webster]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-907">Knight</a>.</p>
<p>The AlwaysOn Availability Group Listener is the magic key. That is what you enter for what my article calls the mirror server. Are you really still on 7.1? This article is not applicable to any version after 7.1.</p>
<p>Webster</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Knight		</title>
		<link>https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-907</link>

		<dc:creator><![CDATA[Knight]]></dc:creator>
		<pubDate>Wed, 31 Aug 2016 15:11:12 +0000</pubDate>
		<guid isPermaLink="false">https://www.carlwebster.com/?p=6943#comment-907</guid>

					<description><![CDATA[In my case I am migrating from a standalone SQL Server to Always On Availability Group

What steps and additional considerations are required for ensuring a smooth migration?
So far I have:
1. DDC Accounts on SQL (Need to Match)
2. When re-conecting use the Listener´s name.

Thanks]]></description>
			<content:encoded><![CDATA[<p>In my case I am migrating from a standalone SQL Server to Always On Availability Group</p>
<p>What steps and additional considerations are required for ensuring a smooth migration?<br />
So far I have:<br />
1. DDC Accounts on SQL (Need to Match)<br />
2. When re-conecting use the Listener´s name.</p>
<p>Thanks</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Carl Webster		</title>
		<link>https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-906</link>

		<dc:creator><![CDATA[Carl Webster]]></dc:creator>
		<pubDate>Tue, 17 May 2016 15:00:23 +0000</pubDate>
		<guid isPermaLink="false">https://www.carlwebster.com/?p=6943#comment-906</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-899&quot;&gt;Michael Dyer&lt;/a&gt;.

Can you connect to your desktops or servers? Follow this article to make sure the connection string is correct.

http://support.citrix.com/article/CTX139222

Webster]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-899">Michael Dyer</a>.</p>
<p>Can you connect to your desktops or servers? Follow this article to make sure the connection string is correct.</p>
<p><a href="http://support.citrix.com/article/CTX139222" rel="nofollow ugc">http://support.citrix.com/article/CTX139222</a></p>
<p>Webster</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Carl Webster		</title>
		<link>https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-905</link>

		<dc:creator><![CDATA[Carl Webster]]></dc:creator>
		<pubDate>Tue, 17 May 2016 14:51:34 +0000</pubDate>
		<guid isPermaLink="false">https://www.carlwebster.com/?p=6943#comment-905</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-904&quot;&gt;Fred&lt;/a&gt;.

I am not a SQL guy so I have no help for you. In all the mirror setups I have done, they all failed over and were ready for use in less than one minute.

Webster]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-904">Fred</a>.</p>
<p>I am not a SQL guy so I have no help for you. In all the mirror setups I have done, they all failed over and were ready for use in less than one minute.</p>
<p>Webster</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Fred		</title>
		<link>https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-904</link>

		<dc:creator><![CDATA[Fred]]></dc:creator>
		<pubDate>Thu, 12 May 2016 19:44:56 +0000</pubDate>
		<guid isPermaLink="false">https://www.carlwebster.com/?p=6943#comment-904</guid>

					<description><![CDATA[This page has been very useful in helping me create the mirroring.  My one problem that I am still encountering though is when failing over to the 2nd SQL Server, I still am not able to run the command &quot;Get-BrokerController&quot; which gives the PermissionDenied error...even though both logins have been added to the mirrored server and 5 minutes passed before I even attempt to run the command.]]></description>
			<content:encoded><![CDATA[<p>This page has been very useful in helping me create the mirroring.  My one problem that I am still encountering though is when failing over to the 2nd SQL Server, I still am not able to run the command &#8220;Get-BrokerController&#8221; which gives the PermissionDenied error&#8230;even though both logins have been added to the mirrored server and 5 minutes passed before I even attempt to run the command.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Carl Webster		</title>
		<link>https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-903</link>

		<dc:creator><![CDATA[Carl Webster]]></dc:creator>
		<pubDate>Wed, 30 Mar 2016 12:09:31 +0000</pubDate>
		<guid isPermaLink="false">https://www.carlwebster.com/?p=6943#comment-903</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-902&quot;&gt;Kyle Woodbury&lt;/a&gt;.

I have updated the article to reflect your comments.


Webster]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-902">Kyle Woodbury</a>.</p>
<p>I have updated the article to reflect your comments.</p>
<p>Webster</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Kyle Woodbury		</title>
		<link>https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-902</link>

		<dc:creator><![CDATA[Kyle Woodbury]]></dc:creator>
		<pubDate>Tue, 29 Mar 2016 20:57:58 +0000</pubDate>
		<guid isPermaLink="false">https://www.carlwebster.com/?p=6943#comment-902</guid>

					<description><![CDATA[We used this last night to attempt a 7.6 DB mirror, and it corrupted our DDCs due to the following from CTX escalation:
  If the db strings on a 7.x broker are nulled out in the wrong order, there is a high probability, and looks like was the case here based on the DAS errors you experienced, you can lock yourself out of the farm and fall into a outage situation. http://support.citrix.com/article/CTX140319 outlines the appropriate process correctly for 7.6, there are several other blog posts that discuss a similar process but instructions are incomplete, this is because of the versions of XD they were written for, even through the title says 7.x, if the body of the document was written for versions earlier than 7.5/7.6 then they did not account for the analytics/Delegated admin services and these are the services that get our users into trouble.]]></description>
			<content:encoded><![CDATA[<p>We used this last night to attempt a 7.6 DB mirror, and it corrupted our DDCs due to the following from CTX escalation:<br />
  If the db strings on a 7.x broker are nulled out in the wrong order, there is a high probability, and looks like was the case here based on the DAS errors you experienced, you can lock yourself out of the farm and fall into a outage situation. <a href="http://support.citrix.com/article/CTX140319" rel="nofollow ugc">http://support.citrix.com/article/CTX140319</a> outlines the appropriate process correctly for 7.6, there are several other blog posts that discuss a similar process but instructions are incomplete, this is because of the versions of XD they were written for, even through the title says 7.x, if the body of the document was written for versions earlier than 7.5/7.6 then they did not account for the analytics/Delegated admin services and these are the services that get our users into trouble.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Carl Webster		</title>
		<link>https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-901</link>

		<dc:creator><![CDATA[Carl Webster]]></dc:creator>
		<pubDate>Wed, 10 Feb 2016 17:45:01 +0000</pubDate>
		<guid isPermaLink="false">https://www.carlwebster.com/?p=6943#comment-901</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-900&quot;&gt;Luciano&lt;/a&gt;.

No I do not. Sorry, only so many hours in a day and week.

Webster]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-900">Luciano</a>.</p>
<p>No I do not. Sorry, only so many hours in a day and week.</p>
<p>Webster</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Luciano		</title>
		<link>https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-900</link>

		<dc:creator><![CDATA[Luciano]]></dc:creator>
		<pubDate>Wed, 10 Feb 2016 16:37:30 +0000</pubDate>
		<guid isPermaLink="false">https://www.carlwebster.com/?p=6943#comment-900</guid>

					<description><![CDATA[Great post, do you have a similar procedure but for XenApp 6.5 and 7.5? 
I&#039;m looking for a procedure to migrate the datastores of 6.5 and 7.5 (currently on a single sql 2008 server) to a SQL 2014 cluster.
Thanks.]]></description>
			<content:encoded><![CDATA[<p>Great post, do you have a similar procedure but for XenApp 6.5 and 7.5?<br />
I&#8217;m looking for a procedure to migrate the datastores of 6.5 and 7.5 (currently on a single sql 2008 server) to a SQL 2014 cluster.<br />
Thanks.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Michael Dyer		</title>
		<link>https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-899</link>

		<dc:creator><![CDATA[Michael Dyer]]></dc:creator>
		<pubDate>Mon, 04 Jan 2016 10:48:50 +0000</pubDate>
		<guid isPermaLink="false">https://www.carlwebster.com/?p=6943#comment-899</guid>

					<description><![CDATA[Hi Carl 

I got a warning message during the mirroring process for the security group used for the Service account portion of the mirror configuration. &quot;SQL Server cannot create domain\sqlserver&quot;. (Microsoft. SqlServer.Smo)

The mirror worked just want to ensure its been configured correctly. 

All three servers are members of the SQL Server security group. Do this group need rights on the database server? Did I miss a step

Thanks again for your time.]]></description>
			<content:encoded><![CDATA[<p>Hi Carl </p>
<p>I got a warning message during the mirroring process for the security group used for the Service account portion of the mirror configuration. &#8220;SQL Server cannot create domain\sqlserver&#8221;. (Microsoft. SqlServer.Smo)</p>
<p>The mirror worked just want to ensure its been configured correctly. </p>
<p>All three servers are members of the SQL Server security group. Do this group need rights on the database server? Did I miss a step</p>
<p>Thanks again for your time.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Carl Webster		</title>
		<link>https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-898</link>

		<dc:creator><![CDATA[Carl Webster]]></dc:creator>
		<pubDate>Sat, 31 Oct 2015 13:11:00 +0000</pubDate>
		<guid isPermaLink="false">https://www.carlwebster.com/?p=6943#comment-898</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-897&quot;&gt;Salim&lt;/a&gt;.

That is explained in the article. Do you have the computer accounts added to both SQL servers? Did you wait long enough for the failover to settle down?

Thanks

Webster]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-897">Salim</a>.</p>
<p>That is explained in the article. Do you have the computer accounts added to both SQL servers? Did you wait long enough for the failover to settle down?</p>
<p>Thanks</p>
<p>Webster</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Salim		</title>
		<link>https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-897</link>

		<dc:creator><![CDATA[Salim]]></dc:creator>
		<pubDate>Sat, 31 Oct 2015 08:52:10 +0000</pubDate>
		<guid isPermaLink="false">https://www.carlwebster.com/?p=6943#comment-897</guid>

					<description><![CDATA[Hi Carl,

Great Article...

All above steps i have completed SQL Mirroring

When I failback to principal server and when I go back to DDC1 in opened  Powershell Get-BrokerController command fails and gives me below error

PS C:\Users\administrator.SKLAB&#062; Get-BrokerController
Get-BrokerController : Insufficient administrative privilege
At line:1 char:1
+ Get-BrokerController
+ ~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : PermissionDenied: (:) [Get-BrokerController], SdkOperationException
    + FullyQualifiedErrorId : Citrix.XDPowerShell.Broker.AccessDenied,Citrix.Broker.Admin.SDK.GetBrokerControllerComma
   nd


PLease help me in abve ....]]></description>
			<content:encoded><![CDATA[<p>Hi Carl,</p>
<p>Great Article&#8230;</p>
<p>All above steps i have completed SQL Mirroring</p>
<p>When I failback to principal server and when I go back to DDC1 in opened  Powershell Get-BrokerController command fails and gives me below error</p>
<p>PS C:\Users\administrator.SKLAB&gt; Get-BrokerController<br />
Get-BrokerController : Insufficient administrative privilege<br />
At line:1 char:1<br />
+ Get-BrokerController<br />
+ ~~~~~~~~~~~~~~~~~~~~<br />
    + CategoryInfo          : PermissionDenied: (:) [Get-BrokerController], SdkOperationException<br />
    + FullyQualifiedErrorId : Citrix.XDPowerShell.Broker.AccessDenied,Citrix.Broker.Admin.SDK.GetBrokerControllerComma<br />
   nd</p>
<p>PLease help me in abve &#8230;.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Carl Webster		</title>
		<link>https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-896</link>

		<dc:creator><![CDATA[Carl Webster]]></dc:creator>
		<pubDate>Sat, 10 Oct 2015 14:15:54 +0000</pubDate>
		<guid isPermaLink="false">https://www.carlwebster.com/?p=6943#comment-896</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-895&quot;&gt;Goran Jozic&lt;/a&gt;.

Yes, it is MUCH better and easier if you setup the mirror databases from the beginning.

Thanks

Webster]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-895">Goran Jozic</a>.</p>
<p>Yes, it is MUCH better and easier if you setup the mirror databases from the beginning.</p>
<p>Thanks</p>
<p>Webster</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Goran Jozic		</title>
		<link>https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-895</link>

		<dc:creator><![CDATA[Goran Jozic]]></dc:creator>
		<pubDate>Sat, 10 Oct 2015 14:10:26 +0000</pubDate>
		<guid isPermaLink="false">https://www.carlwebster.com/?p=6943#comment-895</guid>

					<description><![CDATA[Hello Carl,
Wonderful post. 
We have XD 7.6 farm and rather than creating new farm from scratch I just used your steps and moved POC to production. (with few other additional steps :-) )
I just wanted to share one thing that worked for me. 

When it came to splitting off Monitoring and Logging DG from Site DB I did things little bit differently.
I first created LOGDB and MONITORDB manually (with proper collation and recovery model) and configured mirroring. Then went to Studio and pointed Monitoring and Logging DB to those two new databases I had just created. After few seconds Studio recognized both: new DBs and mirrored instances.

Again, thank you very much for all your contributions to the community.]]></description>
			<content:encoded><![CDATA[<p>Hello Carl,<br />
Wonderful post.<br />
We have XD 7.6 farm and rather than creating new farm from scratch I just used your steps and moved POC to production. (with few other additional steps 🙂 )<br />
I just wanted to share one thing that worked for me. </p>
<p>When it came to splitting off Monitoring and Logging DG from Site DB I did things little bit differently.<br />
I first created LOGDB and MONITORDB manually (with proper collation and recovery model) and configured mirroring. Then went to Studio and pointed Monitoring and Logging DB to those two new databases I had just created. After few seconds Studio recognized both: new DBs and mirrored instances.</p>
<p>Again, thank you very much for all your contributions to the community.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Carl Webster		</title>
		<link>https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-894</link>

		<dc:creator><![CDATA[Carl Webster]]></dc:creator>
		<pubDate>Wed, 26 Aug 2015 21:14:02 +0000</pubDate>
		<guid isPermaLink="false">https://www.carlwebster.com/?p=6943#comment-894</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-893&quot;&gt;Magnus&lt;/a&gt;.

There are there for me:

PS C:\MigrationScript&#062; get-command test-* -module citrix*

CommandType     Name                                               ModuleName
-----------     ----                                               ----------
Cmdlet          Test-AcctDBConnection                              Citrix.AdIdentity.Admin.V2
Cmdlet          Test-AcctIdentityPoolNameAvailable                 Citrix.AdIdentity.Admin.V2
Cmdlet          Test-AdminAccess                                   Citrix.DelegatedAdmin.Admin.V1
Cmdlet          Test-AdminDBConnection                             Citrix.DelegatedAdmin.Admin.V1
Cmdlet          Test-AnalyticsDBConnection                         Citrix.Analytics.Admin.V1
Cmdlet          Test-BrokerAccessPolicyRuleNameAvailable           Citrix.Broker.Admin.V2
Cmdlet          Test-BrokerAppAssignmentPolicyRuleNameAvailable    Citrix.Broker.Admin.V2
Cmdlet          Test-BrokerAppEntitlementPolicyRuleNameAvailable   Citrix.Broker.Admin.V2
Cmdlet          Test-BrokerApplicationNameAvailable                Citrix.Broker.Admin.V2
Cmdlet          Test-BrokerAssignmentPolicyRuleNameAvailable       Citrix.Broker.Admin.V2
Cmdlet          Test-BrokerCatalogNameAvailable                    Citrix.Broker.Admin.V2
Cmdlet          Test-BrokerDBConnection                            Citrix.Broker.Admin.V2
Cmdlet          Test-BrokerDesktopGroupNameAvailable               Citrix.Broker.Admin.V2
Cmdlet          Test-BrokerEntitlementPolicyRuleNameAvailable      Citrix.Broker.Admin.V2
Cmdlet          Test-BrokerLicenseServer                           Citrix.Broker.Admin.V2
Cmdlet          Test-BrokerMachineNameAvailable                    Citrix.Broker.Admin.V2
Cmdlet          Test-BrokerPowerTimeSchemeNameAvailable            Citrix.Broker.Admin.V2
Cmdlet          Test-BrokerRemotePCAccountNameAvailable            Citrix.Broker.Admin.V2
Cmdlet          Test-ConfigDBConnection                            Citrix.Configuration.Admin.V2
Cmdlet          Test-ConfigServiceInstanceAvailability             Citrix.Configuration.Admin.V2
Cmdlet          Test-CtxAppVServer                                 Citrix.AppV.Admin.V1
Cmdlet          Test-EnvTestDBConnection                           Citrix.EnvTest.Admin.V1
Cmdlet          Test-HypDBConnection                               Citrix.Host.Admin.V2
Cmdlet          Test-HypHostingUnitNameAvailable                   Citrix.Host.Admin.V2
Cmdlet          Test-HypHypervisorConnectionNameAvailable          Citrix.Host.Admin.V2
Cmdlet          Test-LogDBConnection                               Citrix.ConfigurationLogging.Admin.V1
Cmdlet          Test-MonitorDBConnection                           Citrix.Monitor.Admin.V1
Cmdlet          Test-ProvDBConnection                              Citrix.MachineCreation.Admin.V2
Cmdlet          Test-ProvSchemeNameAvailable                       Citrix.MachineCreation.Admin.V2
Cmdlet          Test-SfDBConnection                                Citrix.Storefront.Admin.V1
Cmdlet          Test-UserProfileShare                              Citrix.UserProfileManager.Admin.V1

Are you loading all the snapins?

add-pssnapin *citrix*

Webster]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.carlwebster.com/changing-production-xendesktop-7x-site-use-sql-mirroring/comment-page-1/#comment-893">Magnus</a>.</p>
<p>There are there for me:</p>
<p>PS C:\MigrationScript&gt; get-command test-* -module citrix*</p>
<p>CommandType     Name                                               ModuleName<br />
&#8212;&#8212;&#8212;&#8211;     &#8212;-                                               &#8212;&#8212;&#8212;-<br />
Cmdlet          Test-AcctDBConnection                              Citrix.AdIdentity.Admin.V2<br />
Cmdlet          Test-AcctIdentityPoolNameAvailable                 Citrix.AdIdentity.Admin.V2<br />
Cmdlet          Test-AdminAccess                                   Citrix.DelegatedAdmin.Admin.V1<br />
Cmdlet          Test-AdminDBConnection                             Citrix.DelegatedAdmin.Admin.V1<br />
Cmdlet          Test-AnalyticsDBConnection                         Citrix.Analytics.Admin.V1<br />
Cmdlet          Test-BrokerAccessPolicyRuleNameAvailable           Citrix.Broker.Admin.V2<br />
Cmdlet          Test-BrokerAppAssignmentPolicyRuleNameAvailable    Citrix.Broker.Admin.V2<br />
Cmdlet          Test-BrokerAppEntitlementPolicyRuleNameAvailable   Citrix.Broker.Admin.V2<br />
Cmdlet          Test-BrokerApplicationNameAvailable                Citrix.Broker.Admin.V2<br />
Cmdlet          Test-BrokerAssignmentPolicyRuleNameAvailable       Citrix.Broker.Admin.V2<br />
Cmdlet          Test-BrokerCatalogNameAvailable                    Citrix.Broker.Admin.V2<br />
Cmdlet          Test-BrokerDBConnection                            Citrix.Broker.Admin.V2<br />
Cmdlet          Test-BrokerDesktopGroupNameAvailable               Citrix.Broker.Admin.V2<br />
Cmdlet          Test-BrokerEntitlementPolicyRuleNameAvailable      Citrix.Broker.Admin.V2<br />
Cmdlet          Test-BrokerLicenseServer                           Citrix.Broker.Admin.V2<br />
Cmdlet          Test-BrokerMachineNameAvailable                    Citrix.Broker.Admin.V2<br />
Cmdlet          Test-BrokerPowerTimeSchemeNameAvailable            Citrix.Broker.Admin.V2<br />
Cmdlet          Test-BrokerRemotePCAccountNameAvailable            Citrix.Broker.Admin.V2<br />
Cmdlet          Test-ConfigDBConnection                            Citrix.Configuration.Admin.V2<br />
Cmdlet          Test-ConfigServiceInstanceAvailability             Citrix.Configuration.Admin.V2<br />
Cmdlet          Test-CtxAppVServer                                 Citrix.AppV.Admin.V1<br />
Cmdlet          Test-EnvTestDBConnection                           Citrix.EnvTest.Admin.V1<br />
Cmdlet          Test-HypDBConnection                               Citrix.Host.Admin.V2<br />
Cmdlet          Test-HypHostingUnitNameAvailable                   Citrix.Host.Admin.V2<br />
Cmdlet          Test-HypHypervisorConnectionNameAvailable          Citrix.Host.Admin.V2<br />
Cmdlet          Test-LogDBConnection                               Citrix.ConfigurationLogging.Admin.V1<br />
Cmdlet          Test-MonitorDBConnection                           Citrix.Monitor.Admin.V1<br />
Cmdlet          Test-ProvDBConnection                              Citrix.MachineCreation.Admin.V2<br />
Cmdlet          Test-ProvSchemeNameAvailable                       Citrix.MachineCreation.Admin.V2<br />
Cmdlet          Test-SfDBConnection                                Citrix.Storefront.Admin.V1<br />
Cmdlet          Test-UserProfileShare                              Citrix.UserProfileManager.Admin.V1</p>
<p>Are you loading all the snapins?</p>
<p>add-pssnapin *citrix*</p>
<p>Webster</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
