When installing MySQL8.0.26, an error occurred when decompressing devel: Dependency detection failed: pkgconfig(openssl) was used by mysql-community-devel-8.0.26-1.e


Project scenario:

Install MySQL8.0.26 under Linux


Problem Description

In the LinuxCentOS7 environment, when installing MySQL8.0.26 and decompressing
the mysql-community-devel-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 install openssl-devel

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

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

problem solved!

Guess you like

Origin blog.csdn.net/qq_45263520/article/details/124086100