<?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: How to Setup MariaDB (Master-Slave) Replication in CentOS/RHEL 7 and Debian 8/9	</title>
	<atom:link href="https://www.tecmint.com/mariadb-master-slave-replication-on-centos-rhel-debian/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/mariadb-master-slave-replication-on-centos-rhel-debian/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Tue, 08 Dec 2020 00:44:29 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: intosomethin		</title>
		<link>https://www.tecmint.com/mariadb-master-slave-replication-on-centos-rhel-debian/comment-page-1/#comment-1399088</link>

		<dc:creator><![CDATA[intosomethin]]></dc:creator>
		<pubDate>Tue, 08 Dec 2020 00:44:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=18389#comment-1399088</guid>

					<description><![CDATA[I found it a bit daring to write this guide if you obviously don&#039;t fully understand what you are doing. On the plus side, the commands are correct, but many are redundant or unnecessary as others pointed out as well.

GTID is an alternative to the file and log position. And mixing them makes no sense since the latter will be obviously ignored. Just as an example.]]></description>
			<content:encoded><![CDATA[<p>I found it a bit daring to write this guide if you obviously don&#8217;t fully understand what you are doing. On the plus side, the commands are correct, but many are redundant or unnecessary as others pointed out as well.</p>
<p>GTID is an alternative to the file and log position. And mixing them makes no sense since the latter will be obviously ignored. Just as an example.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: intosomethin		</title>
		<link>https://www.tecmint.com/mariadb-master-slave-replication-on-centos-rhel-debian/comment-page-1/#comment-1399087</link>

		<dc:creator><![CDATA[intosomethin]]></dc:creator>
		<pubDate>Tue, 08 Dec 2020 00:38:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=18389#comment-1399087</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/mariadb-master-slave-replication-on-centos-rhel-debian/comment-page-1/#comment-1233038&quot;&gt;Robson Rissato&lt;/a&gt;.

Check again what you typed in. ;)]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/mariadb-master-slave-replication-on-centos-rhel-debian/comment-page-1/#comment-1233038">Robson Rissato</a>.</p>
<p>Check again what you typed in. ;)</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Robson Rissato		</title>
		<link>https://www.tecmint.com/mariadb-master-slave-replication-on-centos-rhel-debian/comment-page-1/#comment-1233038</link>

		<dc:creator><![CDATA[Robson Rissato]]></dc:creator>
		<pubDate>Wed, 28 Aug 2019 00:26:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=18389#comment-1233038</guid>

					<description><![CDATA[In mariadb version 10.4 this does not work
&lt;ptr&gt;
log-bin
server_id = 1
replicate-do-db = employees
bind-address = 192.168.0.18
&lt;/pre&gt;
of mysql_upgrade errors: unknown option ‘--log-bin’]]></description>
			<content:encoded><![CDATA[<p>In mariadb version 10.4 this does not work
<ptr>
log-bin<br />
server_id = 1<br />
replicate-do-db = employees<br />
bind-address = 192.168.0.18</p>
<p>of mysql_upgrade errors: unknown option ‘&#8211;log-bin’</ptr>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Tapan Thapa		</title>
		<link>https://www.tecmint.com/mariadb-master-slave-replication-on-centos-rhel-debian/comment-page-1/#comment-1173248</link>

		<dc:creator><![CDATA[Tapan Thapa]]></dc:creator>
		<pubDate>Mon, 17 Jun 2019 18:30:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=18389#comment-1173248</guid>

					<description><![CDATA[Slave:

In step 2, below command is not required.
&lt;code&gt;MariaDB [(none)]&#062; GRANT ALL PRIVILEGES ON employees.* TO &#039;slave&#039;@&#039;localhost&#039; WITH GRANT OPTION;&lt;/code&gt;]]></description>
			<content:encoded><![CDATA[<p>Slave:</p>
<p>In step 2, below command is not required.<br />
<code>MariaDB [(none)]&gt; GRANT ALL PRIVILEGES ON employees.* TO 'slave'@'localhost' WITH GRANT OPTION;</code></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Melah		</title>
		<link>https://www.tecmint.com/mariadb-master-slave-replication-on-centos-rhel-debian/comment-page-1/#comment-1159182</link>

		<dc:creator><![CDATA[Melah]]></dc:creator>
		<pubDate>Sat, 01 Jun 2019 23:27:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=18389#comment-1159182</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/mariadb-master-slave-replication-on-centos-rhel-debian/comment-page-1/#comment-1157584&quot;&gt;Ravi Saive&lt;/a&gt;.

Thank you for reactivity. 

Do you have tutorials how to master in shell scripting ?
I don&#039;t have any previous experience on that.

Thank you in advance

Cheers,]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/mariadb-master-slave-replication-on-centos-rhel-debian/comment-page-1/#comment-1157584">Ravi Saive</a>.</p>
<p>Thank you for reactivity. </p>
<p>Do you have tutorials how to master in shell scripting ?<br />
I don&#8217;t have any previous experience on that.</p>
<p>Thank you in advance</p>
<p>Cheers,</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
