An error occurred when decompressing the libs file in MySQL8.0.26: Dependency detection failed: mariadb-libs was replaced by mysql-community-libs-8.0.26-1.el7.x86_64


Project scenario:

Install MySQL8.0.26 under Linux


Problem Description

In the LinuxCentOS7 environment, when installing MySQL8.0.26 and decompressing
the mysql-community-libs-8.0.26-1.el7.x86_64.rpm file, the following error occurs:

Insert image description here


solution:

Enter the following command

[root@cq03 mysql]# yum remove mysql-libs

When asked whether to continue, enter y
to complete the installation, then enter the following command

[root@cq03 mysql]#  rpm -ivh mysql-community-libs-8.0.26-1.el7.x86_64.rpm

Insert image description here
Decompression completed! problem solved!

Guess you like

Origin blog.csdn.net/qq_45263520/article/details/124085652
Recommended