<?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 Upgrade MariaDB 5.5 to MariaDB 10.1 on CentOS/RHEL 7 and Debian Systems	</title>
	<atom:link href="https://www.tecmint.com/upgrade-mariadb-5-5-to-10-centos-rhel-debian-ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/upgrade-mariadb-5-5-to-10-centos-rhel-debian-ubuntu/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Wed, 20 Nov 2019 05:36:04 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Bikram		</title>
		<link>https://www.tecmint.com/upgrade-mariadb-5-5-to-10-centos-rhel-debian-ubuntu/comment-page-1/#comment-1292900</link>

		<dc:creator><![CDATA[Bikram]]></dc:creator>
		<pubDate>Wed, 20 Nov 2019 05:36:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=18264#comment-1292900</guid>

					<description><![CDATA[Hi, 

After adding the Repo 
&lt;code&gt;nano /etc/yum.repos.d/MariaDB10.repo&lt;/code&gt;

I just did and upgrade.

&lt;code&gt;yum -y upgrade maria* &lt;/code&gt;

I didn&#039;t uninstall the previous installation and in 2 mins it was Up and running with new MariaDB 10

Thanks,]]></description>
			<content:encoded><![CDATA[<p>Hi, </p>
<p>After adding the Repo<br />
<code>nano /etc/yum.repos.d/MariaDB10.repo</code></p>
<p>I just did and upgrade.</p>
<p><code>yum -y upgrade maria* </code></p>
<p>I didn&#8217;t uninstall the previous installation and in 2 mins it was Up and running with new MariaDB 10</p>
<p>Thanks,</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: RyRy		</title>
		<link>https://www.tecmint.com/upgrade-mariadb-5-5-to-10-centos-rhel-debian-ubuntu/comment-page-1/#comment-1137182</link>

		<dc:creator><![CDATA[RyRy]]></dc:creator>
		<pubDate>Sun, 21 Apr 2019 19:24:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=18264#comment-1137182</guid>

					<description><![CDATA[Regarding the dependencies, removing via rpm command without blowing up dependencies:
&lt;pre&gt;
# rpm -e --nodeps mariadb mariadb-libs mariadb-server
&lt;/pre&gt;
Then yum install the packages. MariaDB-Shared replaces&lt;strong&gt; mariadb-libs&lt;/strong&gt; which is what postfix, etc needs.

You will then find the packages are satisfied:
&lt;pre&gt;
# yum deplist postfix
&lt;/pre&gt;
and you will see the MariaDB-Shared is a accepted provider.]]></description>
			<content:encoded><![CDATA[<p>Regarding the dependencies, removing via rpm command without blowing up dependencies:</p>
<pre>
# rpm -e --nodeps mariadb mariadb-libs mariadb-server
</pre>
<p>Then yum install the packages. MariaDB-Shared replaces<strong> mariadb-libs</strong> which is what postfix, etc needs.</p>
<p>You will then find the packages are satisfied:</p>
<pre>
# yum deplist postfix
</pre>
<p>and you will see the MariaDB-Shared is a accepted provider.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Kirt HAll		</title>
		<link>https://www.tecmint.com/upgrade-mariadb-5-5-to-10-centos-rhel-debian-ubuntu/comment-page-1/#comment-1046047</link>

		<dc:creator><![CDATA[Kirt HAll]]></dc:creator>
		<pubDate>Tue, 09 Oct 2018 21:36:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=18264#comment-1046047</guid>

					<description><![CDATA[Thanks everyone for your tips and advice. I was able to recovered my previously existing databases by adding the datadir parameter to the &lt;strong&gt;my.cnf&lt;/strong&gt; file. I then restarted the database and all was good. Interestingly enough I later had to remove this references from the my.cnf because of startup errors but the database does not lose its relationships with the databases. This I can not explain.]]></description>
			<content:encoded><![CDATA[<p>Thanks everyone for your tips and advice. I was able to recovered my previously existing databases by adding the datadir parameter to the <strong>my.cnf</strong> file. I then restarted the database and all was good. Interestingly enough I later had to remove this references from the my.cnf because of startup errors but the database does not lose its relationships with the databases. This I can not explain.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/upgrade-mariadb-5-5-to-10-centos-rhel-debian-ubuntu/comment-page-1/#comment-1045690</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Tue, 09 Oct 2018 04:45:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=18264#comment-1045690</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/upgrade-mariadb-5-5-to-10-centos-rhel-debian-ubuntu/comment-page-1/#comment-1045412&quot;&gt;K Hall&lt;/a&gt;.

@Kirt,

You can import your database and run mysql_upgrade command to upgrade the database structures with new engine..]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/upgrade-mariadb-5-5-to-10-centos-rhel-debian-ubuntu/comment-page-1/#comment-1045412">K Hall</a>.</p>
<p>@Kirt,</p>
<p>You can import your database and run mysql_upgrade command to upgrade the database structures with new engine..</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: K Hall		</title>
		<link>https://www.tecmint.com/upgrade-mariadb-5-5-to-10-centos-rhel-debian-ubuntu/comment-page-1/#comment-1045412</link>

		<dc:creator><![CDATA[K Hall]]></dc:creator>
		<pubDate>Mon, 08 Oct 2018 18:19:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=18264#comment-1045412</guid>

					<description><![CDATA[Upgraded MariaDB5.5 to 10.0 following these steps including removal of MariaDB. I then used yum to install mariadb10.0. This went without error. I then started the MariaDB service and it showed the correct version. 

However, the previously existing database was not found. How do I re-attach the old database to the new database engine so I can run the upgrade procedure against it? The old data files are still available.]]></description>
			<content:encoded><![CDATA[<p>Upgraded MariaDB5.5 to 10.0 following these steps including removal of MariaDB. I then used yum to install mariadb10.0. This went without error. I then started the MariaDB service and it showed the correct version. </p>
<p>However, the previously existing database was not found. How do I re-attach the old database to the new database engine so I can run the upgrade procedure against it? The old data files are still available.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
