<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:media="http://search.yahoo.com/mrss/">
    <channel>
        <title>SysAdmin Journal · MySQL</title>
        <link>https://sysadmin-journal.com/tag/mysql</link>
        <description>Posts tagged with MySQL</description>
        <language>en</language>
        <lastBuildDate>Fri, 01 Dec 2023 16:15:13 +0000</lastBuildDate>
        <atom:link href="https://sysadmin-journal.com/tag/mysql/rss" rel="self" type="application/rss+xml" />
        <ttl>60</ttl>
        <item>
            <title>Installing MySQL Community Server version 8 on openSUSE Leap 15</title>
            <link>https://sysadmin-journal.com/installing-mysql-community-server-version-8-on-opensuse</link>
            <guid isPermaLink="true">https://sysadmin-journal.com/installing-mysql-community-server-version-8-on-opensuse</guid>
            <pubDate>Fri, 01 Dec 2023 16:15:13 +0000</pubDate>
            <dc:creator>Ish Sookun</dc:creator>
            <category>MySQL</category>
            <category>openSUSE</category>
            <category>Linux</category>
            <description>The MySQL repository for SUSE Linux provides a simple and convenient way to install and update MySQL products with the latest software packages using the Zypper package management tool.</description>
            <content:encoded><![CDATA[<p>To begin the installation, visit <a href="https://dev.mysql.com/downloads/repo/suse/">MySQL Community Downloads</a> page and download the RPM package for openSUSE Leap 15.</p><h3 id="install-the-rpm">Install the RPM</h3><pre><code>sudo rpm -Uvh mysql80-community-release-sles12-8.noarch.rpm</code></pre><h3 id="import-the-mysql-gnupg-key">Import the MySQL GnuPG Key</h3><pre><code>sudo rpm --import /etc/RPM-GPG-KEY-mysql</code></pre><h3 id="install-mysql-with-zypper">Install MySQL with Zypper</h3><pre><code>sudo zypper install mysql-community-server</code></pre><p>A superuser account <code>'root'@'localhost'</code> is created. A password for the superuser is set and stored in the error log file. To reveal it, use the following command:</p><pre><code>sudo grep 'temporary password' /var/log/mysql/mysqld.log</code></pre><p>Change the root password as soon as possible by logging in with the generated, temporary password and set a custom password for the superuser account:</p><pre><code>mysql -u root -p</code></pre><pre><code>ALTER USER 'root'@'localhost' IDENTIFIED BY 'MyNewPassword';</code></pre>]]></content:encoded>
        </item>
    </channel>
</rss>
