Loaded plugins: fastestmirror, langpacks Repository epel is listed more than once in the configuration Loading mirror speeds from cached hostfile * base: mirrors.aliyun.com * extras: mirrors.aliyun.com * updates: mirrors.aliyun.com No package mysql-server available. Error: Nothing to do最佳处理办法
时间: 2024-02-18 17:58:58 浏览: 83
Eclipse运行android项目报错Unable to build: the file dx.jar was not loaded from the SDK folder的解决办法
这个错误提示表明你的系统上找不到 mysql-server 这个包,可能是因为你的系统没有安装 mysql 或者是你的软件源配置有问题。
你可以尝试以下几种解决方法:
1. 确保你的系统已经安装了 mysql,并且已经启动了 mysql 服务。
2. 检查你的软件源配置是否正确,可以使用以下命令查看:
```
yum repolist
```
如果发现 epel 软件源被列出了多次,可以尝试将重复的部分注释掉或删除。
3. 尝试更新软件源缓存并重新安装 mysql-server:
```
sudo yum clean all
sudo yum update
sudo yum install mysql-server
```
如果仍然无法安装,可以尝试在安装命令后面加上 --enablerepo=epel 参数,强制使用 epel 软件源安装:
```
sudo yum install --enablerepo=epel mysql-server
```
希望这些方法能够帮助到你解决问题。
阅读全文