在Centos 8系统中遇到安装mysql5.7时的问题,当执行`yum install mysql-community-server`时,出现了"No match for argument: mysql-community-server"和"Error: Unable to find a match: mysql-community-server"的错误提示。为了解决这个问题,首先需要通过运行`yum module disable mysql`来禁用默认的m...
Centos8 安装 mysql5.7 No match
在Centos 8系统中遇到安装mysql5.7时的问题,当执行`yum install mysql-community-server`时,出现了"No match for argument: mysql-community-server"和"Error: Unable to find a match: mysql-community-server"的错误提示。为了解决这个问题,首先需要通过运行`yum module disable mysql`来禁用默认的mysql模块。然后,再尝试重新运行`yum install mysql-community-server`命令进行安装。按照这个步骤操作,应该可以成功解决Centos8安装mysql5.7时的匹配问题。2024-10-26