Centos7服务器的mysql安装不了,rpm找不到包怎么办?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos7服务器的mysql安装不了,rpm找不到包怎么办?相关的知识,希望对你有一定的参考价值。
学习Centos7服务器配置的过程中:
我首先rpm -ivh http://repo.mysql.com/mysql80-community-release-sles12-2.noarch.rpm
然后 yum install sql成功,再然后yum install mysql-server和-devel都会报下面的错误:
Loaded plugins: fastestmirror, langpacks
Repository epel is listed more than once in the configuration
Loading mirror speeds from cached hostfile
No package mysql-server available.
Error: Nothing to do
这种情况应该怎么处理?
我现在的 rpm -qa | grep mysql版本查询查到的都是mysql80-community-release-sles12-3.noarch
可以先尝试 使用默认的 再去学使用其他的
yum install mariadb-server -y
希望可以帮助你 请采纳 谢谢 参考技术A 从官网直接下载安装包,上传安装。追问
这种安装是不是要付费呀,具体的下载版本可以说一下么,我记得企业版是收费的哦
CentOS 6.9/7通过yum安装指定版本的MySQL
一、安装CENTOS 6
# wget http://repo.mysql.com/mysql57-community-release-el6.rpm && rpm -ivh mysql57-community-release-el6.rpm # yum install -y mysql-community-server
备注:http://repo.mysql.com这个站点上就是放置rpm源的站点,可以找到其它类型的源。
如果发现系统上有很多个版本的源,可以通过这个命令关掉其它的源,进入/etc/yum.repos.d/直接删除相关的repo文件,或者进去文件进行修改。
查询源:yum repolist all | grep mysql
二、常用服务管理
# 启动 service mysqld start # 停止 service mysqld stop # 重启 service mysqld restart # 重新加载,但不是my.cnf的配置文件 service mysqld reload
CentOS 7:
安装:
# wget http://repo.mysql.com/mysql57-community-release-el7.rpm && rpm -ivh mysql57-community-release-el7.rpm # yum install -y mysql-community-server
常用服务管理
# 启动 systemctl start mysqld # 停止 systemctl stop mysqld # 重启 systemctl restart mysqld # 重新加载,但不是my.cnf的配置文件 systemctl reload mysqld
以上是关于Centos7服务器的mysql安装不了,rpm找不到包怎么办?的主要内容,如果未能解决你的问题,请参考以下文章