<?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 Install MySQL 8 in Fedora 39 Linux	</title>
	<atom:link href="https://www.tecmint.com/install-mysql-fedora-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/install-mysql-fedora-linux/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Sat, 11 Nov 2023 05:12:51 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/install-mysql-fedora-linux/comment-page-1/#comment-2097567</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Thu, 02 Nov 2023 03:28:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=1996#comment-2097567</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-mysql-fedora-linux/comment-page-1/#comment-2097294&quot;&gt;Federico Martín Lara&lt;/a&gt;.

@Federico,

It seems you&#039;re encountering a package conflict issue between the mariadb-server-utils package version 10.5.22-1.fc38.x86_64 and the community-mysql-server package, which is version 8.0.32-1.fc38.x86_64 in your Fedora system.

To fix the package conflict error between mariadb-server-utils and community-mysql-server, you&#039;ll need to make a decision on which database server you want to use (MariaDB or MySQL) and resolve the conflict accordingly.

If you want to keep MariaDB and remove MySQL (community-mysql-server), you can run the following command:
&lt;pre&gt;
sudo dnf remove community-mysql-server
&lt;/pre&gt;
If you want to keep MySQL and remove MariaDB (mariadb-server-utils), you can run:
&lt;pre&gt;
sudo dnf remove mariadb-server-utils
&lt;/pre&gt;
After removing the unwanted database server, you can then update or install the chosen one. For example, if you decided to use MariaDB, you can update it with:
&lt;pre&gt;
sudo dnf update mariadb-server-utils
&lt;/pre&gt;
If you decided to use MySQL, you can update it with:
&lt;pre&gt;
sudo dnf update community-mysql-server
&lt;/pre&gt;
Finally, verify that the chosen database server is installed and running as expected.
&lt;pre&gt;
sudo systemctl status mariadb    # for MariaDB
OR
sudo systemctl status mysqld     # for MySQL
&lt;/pre&gt;
Remember to back up any important data before making these changes, as altering your database server could affect your system&#039;s functionality.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-mysql-fedora-linux/comment-page-1/#comment-2097294">Federico Martín Lara</a>.</p>
<p>@Federico,</p>
<p>It seems you&#8217;re encountering a package conflict issue between the mariadb-server-utils package version 10.5.22-1.fc38.x86_64 and the community-mysql-server package, which is version 8.0.32-1.fc38.x86_64 in your Fedora system.</p>
<p>To fix the package conflict error between mariadb-server-utils and community-mysql-server, you&#8217;ll need to make a decision on which database server you want to use (MariaDB or MySQL) and resolve the conflict accordingly.</p>
<p>If you want to keep MariaDB and remove MySQL (community-mysql-server), you can run the following command:</p>
<pre>
sudo dnf remove community-mysql-server
</pre>
<p>If you want to keep MySQL and remove MariaDB (mariadb-server-utils), you can run:</p>
<pre>
sudo dnf remove mariadb-server-utils
</pre>
<p>After removing the unwanted database server, you can then update or install the chosen one. For example, if you decided to use MariaDB, you can update it with:</p>
<pre>
sudo dnf update mariadb-server-utils
</pre>
<p>If you decided to use MySQL, you can update it with:</p>
<pre>
sudo dnf update community-mysql-server
</pre>
<p>Finally, verify that the chosen database server is installed and running as expected.</p>
<pre>
sudo systemctl status mariadb    # for MariaDB
OR
sudo systemctl status mysqld     # for MySQL
</pre>
<p>Remember to back up any important data before making these changes, as altering your database server could affect your system&#8217;s functionality.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Federico Martín Lara		</title>
		<link>https://www.tecmint.com/install-mysql-fedora-linux/comment-page-1/#comment-2097294</link>

		<dc:creator><![CDATA[Federico Martín Lara]]></dc:creator>
		<pubDate>Wed, 01 Nov 2023 09:56:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=1996#comment-2097294</guid>

					<description><![CDATA[I have done the dnf update, and then when installing with &lt;code&gt;sudo dnf install community-mysql-server -y&lt;/code&gt; it gives the following error:
&lt;pre&gt;
Error:
Problema: problem with installed package mariadb-server-utils-3:10.5.22-1.fc38.x86_64
– package mariadb-server-utils-3:10.5.22-1.fc38.x86_64 from @System conflicts with community-mysql-server provided by community-mysql-server-8.0.32-1.fc38.x86_64 from fedora
– package mariadb-server-utils-3:10.5.18-1.fc38.x86_64 from fedora conflicts with community-mysql-server provided by community-mysql-server-8.0.32-1.fc38.x86_64 from fedora
– package mariadb-server-utils-3:10.5.22-1.fc38.x86_64 from updates conflicts with community-mysql-server provided by community-mysql-server-8.0.32-1.fc38.x86_64 from fedora
– conflicting requests
– package mariadb-server-utils-3:10.5.22-1.fc38.x86_64 from @System conflicts with community-mysql-server provided by community-mysql-server-8.0.34-2.fc38.x86_64 from updates
– package mariadb-server-utils-3:10.5.18-1.fc38.x86_64 from fedora conflicts with community-mysql-server provided by community-mysql-server-8.0.34-2.fc38.x86_64 from updates
– package mariadb-server-utils-3:10.5.22-1.fc38.x86_64 from updates conflicts with community-mysql-server provided by community-mysql-server-8.0.34-2.fc38.x86_64 from updates
(pruebe a añadir ‘–allowerasing’ a la línea de comandos para reemplazar los paquetes que producen conflictos o ‘–skip-broken’ para descartar los paquetes que no se pueden instalar)
&lt;/pre&gt;
The article does NOT indicate the use case when MaríaDB has been installed, nor what to do to uninstall it.]]></description>
			<content:encoded><![CDATA[<p>I have done the dnf update, and then when installing with <code>sudo dnf install community-mysql-server -y</code> it gives the following error:</p>
<pre>
Error:
Problema: problem with installed package mariadb-server-utils-3:10.5.22-1.fc38.x86_64
– package mariadb-server-utils-3:10.5.22-1.fc38.x86_64 from @System conflicts with community-mysql-server provided by community-mysql-server-8.0.32-1.fc38.x86_64 from fedora
– package mariadb-server-utils-3:10.5.18-1.fc38.x86_64 from fedora conflicts with community-mysql-server provided by community-mysql-server-8.0.32-1.fc38.x86_64 from fedora
– package mariadb-server-utils-3:10.5.22-1.fc38.x86_64 from updates conflicts with community-mysql-server provided by community-mysql-server-8.0.32-1.fc38.x86_64 from fedora
– conflicting requests
– package mariadb-server-utils-3:10.5.22-1.fc38.x86_64 from @System conflicts with community-mysql-server provided by community-mysql-server-8.0.34-2.fc38.x86_64 from updates
– package mariadb-server-utils-3:10.5.18-1.fc38.x86_64 from fedora conflicts with community-mysql-server provided by community-mysql-server-8.0.34-2.fc38.x86_64 from updates
– package mariadb-server-utils-3:10.5.22-1.fc38.x86_64 from updates conflicts with community-mysql-server provided by community-mysql-server-8.0.34-2.fc38.x86_64 from updates
(pruebe a añadir ‘–allowerasing’ a la línea de comandos para reemplazar los paquetes que producen conflictos o ‘–skip-broken’ para descartar los paquetes que no se pueden instalar)
</pre>
<p>The article does NOT indicate the use case when MaríaDB has been installed, nor what to do to uninstall it.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: David Pope		</title>
		<link>https://www.tecmint.com/install-mysql-fedora-linux/comment-page-1/#comment-2085548</link>

		<dc:creator><![CDATA[David Pope]]></dc:creator>
		<pubDate>Mon, 02 Oct 2023 22:35:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=1996#comment-2085548</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-mysql-fedora-linux/comment-page-1/#comment-1979603&quot;&gt;Ravi Saive&lt;/a&gt;.

Nice easy solution, Ravi! Thank you!]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-mysql-fedora-linux/comment-page-1/#comment-1979603">Ravi Saive</a>.</p>
<p>Nice easy solution, Ravi! Thank you!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/install-mysql-fedora-linux/comment-page-1/#comment-1979603</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Wed, 08 Mar 2023 05:09:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=1996#comment-1979603</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-mysql-fedora-linux/comment-page-1/#comment-1979150&quot;&gt;André&lt;/a&gt;.

@Andre,

You need to allow user to access the database on MySQL with these commands.
&lt;pre&gt;
CREATE USER &#039;golden&#039;@&#039;localhost&#039; IDENTIFIED BY &#039;password&#039;;
GRANT ALL PRIVILEGES ON * . * TO &#039;golden&#039;@&#039;localhost&#039;;
FLUSH PRIVILEGES;
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-mysql-fedora-linux/comment-page-1/#comment-1979150">André</a>.</p>
<p>@Andre,</p>
<p>You need to allow user to access the database on MySQL with these commands.</p>
<pre>
CREATE USER 'golden'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON * . * TO 'golden'@'localhost';
FLUSH PRIVILEGES;
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: André		</title>
		<link>https://www.tecmint.com/install-mysql-fedora-linux/comment-page-1/#comment-1979150</link>

		<dc:creator><![CDATA[André]]></dc:creator>
		<pubDate>Tue, 07 Mar 2023 13:38:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=1996#comment-1979150</guid>

					<description><![CDATA[Installing is not an issue, but actually connecting to a MySQL database is a different story, nor matter what you do, you will always get &quot;&lt;strong&gt;Access denied for user@localhost using password (YES)&lt;/strong&gt;&quot;...]]></description>
			<content:encoded><![CDATA[<p>Installing is not an issue, but actually connecting to a MySQL database is a different story, nor matter what you do, you will always get &#8220;<strong>Access denied for user@localhost using password (YES)</strong>&#8220;&#8230;</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
