MySQL Using The MySQL Yum Repository 1 Installing MySQL On Linux Using The MySQL Yum Repository
MySQL Using The MySQL Yum Repository 1 Installing MySQL On Linux Using The MySQL Yum Repository
Using the MySQL Yum Repository / Installing MySQL on Linux Using the MySQL Yum Repository
c. Install the downloaded release package with the following command, replacing platform-and-
version-specific-package-name with the name of the downloaded RPM package:
The installation command adds the MySQL Yum repository to your system's repository list and
downloads the GnuPG key to check the integrity of the software packages. See Signature
You can check that the MySQL Yum repository has been successfully added by the following
command (for dnf-enabled systems, replace yum in the command with dnf):
Note
Once the MySQL Yum repository is enabled on your system, any system-wide
update by the yum update command (or dnf upgrade for dnf-enabled systems)
upgrades MySQL packages on your system and replaces any native third-party
packages, if Yum finds replacements for them in the MySQL Yum repository; see
Chapter 2, Upgrading MySQL with the MySQL Yum Repository, for a discussion on
some possible effects of that on your system, see Upgrading the Shared Client
Libraries.
Within the MySQL Yum repository, different release series of the MySQL Community Server are
hosted in different subrepositories. The subrepository for the latest GA series (currently MySQL 8.0) is
enabled by default, and the subrepositories for all other series (for example, the MySQL 8.0 series)
are disabled by default. Use this command to see all the subrepositories in the MySQL Yum
repository, and see which of them are enabled or disabled (for dnf-enabled systems, replace yum in
the command with dnf):
To install the latest release from the latest GA series, no configuration is needed. To install the latest
release from a specific series other than the latest GA series, disable the subrepository for the latest
GA series and enable the subrepository for the specific series before running the installation
command. If your platform supports yum-config-manager, you can do that by issuing these
commands, which disable the subrepository for the 5.7 series and enable the one for the 8.0 series:
Besides using yum-config-manager or the dnf config-manager command, you can also select a
release series by editing manually the /etc/yum.repos.d/mysql-community.repo file. This is a
typical entry for a release series' subrepository in the file:
[mysql57-community]
name=MySQL 5.7 Community Server
baseurl=http://repo.mysql.com/yum/mysql-5.7-community/el/6/$basearch/
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql-2022
file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql
Find the entry for the subrepository you want to configure, and edit the enabled option. Specify
enabled=0 to disable a subrepository, or enabled=1 to enable a subrepository. For example, to
install MySQL 8.0, make sure you have enabled=0 for the above subrepository entry for MySQL 5.7,
and have enabled=1 for the entry for the 8.0 series:
You should only enable subrepository for one release series at any time. When subrepositories for
more than one release series are enabled, Yum uses the latest series.
Verify that the correct subrepositories have been enabled and disabled by running the following
command and checking its output (for dnf-enabled systems, replace yum in the command with dnf):
4. Installing MySQL
Install MySQL by the following command (for dnf-enabled systems, replace yum in the command
with dnf):
This installs the package for MySQL server (mysql-community-server) and also packages for the
components required to run the server, including packages for the client (mysql-community-
client), the common error messages and character sets for client and server (mysql-community-
common), and the shared client libraries (mysql-community-libs).
You can check the status of the MySQL server with the following command:
If the operating system is systemd enabled, standard systemctl (or alternatively, service with the
arguments reversed) commands such as stop, start, status, and restart should be used to manage the
MySQL server service. The mysqld service is enabled by default, and it starts at system reboot. See
Managing MySQL Server with systemd for additional information.
At the initial start up of the server, the following happens, given that the data directory of the server is
empty:
• SSL certificate and key files are generated in the data directory.
• A superuser account 'root'@'localhost is created. A password for the superuser is set and stored
in the error log file. To reveal it, use the following command:
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:
Note
For more information on the postinstallation procedures, see Postinstallation Setup and Testing.
Note
Compatibility Information for EL7-based platforms: The following RPM packages from
the native software repositories of the platforms are incompatible with the package
from the MySQL Yum repository that installs the MySQL server. Once you have
installed MySQL using the MySQL Yum repository, you cannot install these packages
(and vice versa).
• akonadi-mysql
Install any packages of your choice with the following command, replacing package-name with name of
the package (for dnf-enabled systems, replace yum in the command with dnf):
To install the shared client libraries (for dnf-enabled systems, replace yum in the command with dnf):
ARM 64-bit (aarch64) is supported on Oracle Linux 7 and requires the Oracle Linux 7 Software Collections
Repository (ol7_software_collections). For example, to install the server:
Note
Known Limitation
The 8.0.12 release requires you to adjust the libstdc++7 path by executing ln -s
/opt/oracle/oracle-armtoolset-1/root/usr/lib64 /usr/lib64/gcc7 after
executing the yum install step.
© 2023 Oracle