<?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: MySQL Recipes: Promoting a Slave to Master or Changing Masters</title>
	<atom:link href="http://www.pythian.com/news/300/mysql-recipes-promoting-a-slave-to-master-or-changing-masters/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pythian.com/news/300/mysql-recipes-promoting-a-slave-to-master-or-changing-masters/</link>
	<description>News and views from Pythian DBAs</description>
	<lastBuildDate>Fri, 10 Feb 2012 13:01:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: Doug</title>
		<link>http://www.pythian.com/news/300/mysql-recipes-promoting-a-slave-to-master-or-changing-masters/#comment-731789</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Thu, 09 Feb 2012 18:08:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/blogs/300/mysql-recipes-promoting-a-slave-to-master-or-changing-masters#comment-731789</guid>
		<description>Do you need to change the log files? My master has 

log-bin=mysql-bin

and my slave has 

relay-log=server-relay-bin

Do I comment out the relay-log and add log-bin?</description>
		<content:encoded><![CDATA[<p>Do you need to change the log files? My master has </p>
<p>log-bin=mysql-bin</p>
<p>and my slave has </p>
<p>relay-log=server-relay-bin</p>
<p>Do I comment out the relay-log and add log-bin?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam</title>
		<link>http://www.pythian.com/news/300/mysql-recipes-promoting-a-slave-to-master-or-changing-masters/#comment-666241</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Fri, 09 Dec 2011 18:13:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/blogs/300/mysql-recipes-promoting-a-slave-to-master-or-changing-masters#comment-666241</guid>
		<description>On S2 you show &#039;change master&#039; followed by a &#039;reset slave&#039; which would obliterate the &#039;change master&#039; setting, no?  I could be wrong.  

There is no mention of making sure binary logging is enabled on the slave that becomes the master.</description>
		<content:encoded><![CDATA[<p>On S2 you show &#8216;change master&#8217; followed by a &#8216;reset slave&#8217; which would obliterate the &#8216;change master&#8217; setting, no?  I could be wrong.  </p>
<p>There is no mention of making sure binary logging is enabled on the slave that becomes the master.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniël van Eeden</title>
		<link>http://www.pythian.com/news/300/mysql-recipes-promoting-a-slave-to-master-or-changing-masters/#comment-543027</link>
		<dc:creator>Daniël van Eeden</dc:creator>
		<pubDate>Fri, 06 May 2011 14:10:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/blogs/300/mysql-recipes-promoting-a-slave-to-master-or-changing-masters#comment-543027</guid>
		<description>CHANGE MASTER TO MASTER_HOST=&#039;&#039;; won&#039;t work with 5.5 and newer.</description>
		<content:encoded><![CDATA[<p>CHANGE MASTER TO MASTER_HOST=&#8221;; won&#8217;t work with 5.5 and newer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gary Smith</title>
		<link>http://www.pythian.com/news/300/mysql-recipes-promoting-a-slave-to-master-or-changing-masters/#comment-503523</link>
		<dc:creator>Gary Smith</dc:creator>
		<pubDate>Mon, 31 Jan 2011 20:12:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/blogs/300/mysql-recipes-promoting-a-slave-to-master-or-changing-masters#comment-503523</guid>
		<description>The promote slave is only pasrtially correct. If the end point slave is using a non-standard port to connect with, the reset slave will indeed reset the slave, but will also reset it back to the default port, which will cause the end point slave to fail to connect. The solution is single, stop slave, reset slave, change master..., start slave. It&#039;s an extra step.

Otherwise, the steps are on the money (good simple workup).</description>
		<content:encoded><![CDATA[<p>The promote slave is only pasrtially correct. If the end point slave is using a non-standard port to connect with, the reset slave will indeed reset the slave, but will also reset it back to the default port, which will cause the end point slave to fail to connect. The solution is single, stop slave, reset slave, change master&#8230;, start slave. It&#8217;s an extra step.</p>
<p>Otherwise, the steps are on the money (good simple workup).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rodolfo</title>
		<link>http://www.pythian.com/news/300/mysql-recipes-promoting-a-slave-to-master-or-changing-masters/#comment-453961</link>
		<dc:creator>Rodolfo</dc:creator>
		<pubDate>Thu, 19 Aug 2010 09:19:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/blogs/300/mysql-recipes-promoting-a-slave-to-master-or-changing-masters#comment-453961</guid>
		<description>Here&#039;s a link where I explains M-&gt;S1-&gt;S2 replication in spanish (more like a cheat sheet).

&lt;a href=&quot;http://camposer-techie.blogspot.com/2010/08/replicacion-maestro-esclavo1-esclavo2.html&quot; rel=&quot;nofollow&quot;&gt;Replicación Maestro-&gt;Esclavo1-&gt;Esclavo2 en mySQL&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Here&#8217;s a link where I explains M-&gt;S1-&gt;S2 replication in spanish (more like a cheat sheet).</p>
<p><a href="http://camposer-techie.blogspot.com/2010/08/replicacion-maestro-esclavo1-esclavo2.html" rel="nofollow">Replicación Maestro-&gt;Esclavo1-&gt;Esclavo2 en mySQL</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: links for 2008-07-01 &#124; Zero / Love</title>
		<link>http://www.pythian.com/news/300/mysql-recipes-promoting-a-slave-to-master-or-changing-masters/#comment-227834</link>
		<dc:creator>links for 2008-07-01 &#124; Zero / Love</dc:creator>
		<pubDate>Tue, 01 Jul 2008 05:34:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/blogs/300/mysql-recipes-promoting-a-slave-to-master-or-changing-masters#comment-227834</guid>
		<description>[...] MySQL Recipes: Promoting a Slave to Master or Changing Masters (tags: howto database) [...]</description>
		<content:encoded><![CDATA[<p>[...] MySQL Recipes: Promoting a Slave to Master or Changing Masters (tags: howto database) [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

