downloads page<\/a> on MySQL’s website that contains the download links. In the “Select Operating System” dropdown, select “Red Hat Enterprise Linux \/ Oracle Linux”. Set the “OS version” dropdown to “Red Hat Enterprise Linux 8 \/ Oracle Linux (x86, 64-bit)”. You can select ARM or 32-bit if your server is running on that architecture. You can download the RPM bundle if you want all of the available packages in one download. If not, you can just click Download on the necessary packages. When taken to the login prompt, you can right-click on “No thanks, just start my download” and copy the link.<\/p>\nThis list of packages is all required to be installed in order to be able to install MySQL server:<\/p>\n
https:\/\/dev.mysql.com\/get\/Downloads\/MySQL-8.0\/mysql-community-common-8.0.32-1.el8.x86_64.rpm\r\nhttps:\/\/dev.mysql.com\/get\/Downloads\/MySQL-8.0\/mysql-community-icu-data-files-8.0.32-1.el8.x86_64.rpm\r\nhttps:\/\/dev.mysql.com\/get\/Downloads\/MySQL-8.0\/mysql-community-client-plugins-8.0.32-1.el8.x86_64.rpm\r\nhttps:\/\/dev.mysql.com\/get\/Downloads\/MySQL-8.0\/mysql-community-libs-8.0.32-1.el8.x86_64.rpm\r\nhttps:\/\/dev.mysql.com\/get\/Downloads\/MySQL-8.0\/mysql-community-client-8.0.32-1.el8.x86_64.rpm<\/pre>\nYou can download these packages onto your server by using the wget command. If you don’t have this tool installed on your system, you can install it using this command:<\/p>\n
dnf install wget<\/pre>\nNow you can download the packages using wget. This is one example:<\/p>\n
wget https:\/\/dev.mysql.com\/get\/Downloads\/MySQL-8.0\/mysql-community-common-8.0.32-1.el8.x86_64.rpm<\/pre>\nOnce downloaded, you can install this .rpm file using the RPM command:<\/p>\n
rpm -i mysql-community-common-8.0.32-1.el8.x86_64.rpm<\/pre>\nWith that, you now have the first required package installed. Repeat the process with all of the packages in the order they are listed above.<\/p>\n
Finally, we can download and install the server package:<\/p>\n
wget https:\/\/dev.mysql.com\/get\/Downloads\/MySQL-8.0\/mysql-community-server-8.0.32-1.el8.x86_64.rpm\r\nrpm -i mysql-community-server-8.0.32-1.el8.x86_64.rpm<\/pre>\n