** Found 6 pre-existing rpmdb problem(s), 'yum check' output follows: mysql-community-server-5.7.24-1.el7.x86_64 has missing requires of /usr/bin/perl mysql-community-server-5.7.24-1.el7.x86_64 has missing requires of libaio.so.1()(64bit) mysql-community-server-5.7.24-1.el7.x86_64 has missing requires of libaio.so.1(LIBAIO_0.1)(64bit) mysql-community-server-5.7.24-1.el7.x86_64 has missing requires of libaio.so.1(LIBAIO_0.4)(64bit) mysql-community-server-5.7.24-1.el7.x86_64 has missing requires of perl(Getopt::Long) mysql-community-server-5.7.24-1.el7.x86_64 has missing requires of perl(strict)
时间: 2024-03-23 22:37:57 浏览: 181
nx-tab-beta2.75-20230705-rel.7z(安卓平板版本,Switch刷机适用)
这段输出是运行 "yum check" 命令后的结果,提示了 6 个 RPM 数据库问题,其中包括 mysql-community-server-5.7.24-1.el7.x86_64 包的某些依赖项丢失的问题。
这些错误意味着该软件包需要一些其他软件包或文件,但是这些软件包或文件在系统中不存在。在这种情况下,可以尝试使用 "yum install" 命令来安装缺少的软件包。例如,对于缺少的 /usr/bin/perl 文件,可以使用以下命令安装 Perl:
```
sudo yum install perl
```
对于缺少的 libaio.so.1()(64bit) 文件,可以使用以下命令安装 libaio 软件包:
```
sudo yum install libaio
```
对于缺少的 Getopt::Long 和 strict 模块,可以使用以下命令安装 perl 模块:
```
sudo yum install perl-Getopt-Long perl-strict
```
安装缺少的软件包后,再次运行 "yum check" 命令,应该就能够解决这些 RPM 数据库问题了。
阅读全文