当前位置:   article > 正文

CentOS7安装mysql8_no matches found for: mysql80-community-release-el

no matches found for: mysql80-community-release-el7-4.noarch.rpm

1、检查是否已经安装了mysql,已经安装的删除原来的安装

(1)查看已经安装的myslq,并且删除

rpm -qa|grep mysql|xargs rpm -e --nodeps

(2) 卸载已安装的 Mariadb 数据库
rpm -qa|grep mariadb|xargs rpm -e --nodeps

(3) 再次查看,确认是否卸载完成。
rpm -qa|grep -i mariadb
rpm -qa|grep mysql

2、安装mysql

(1)下载安装包文件
wget https://repo.mysql.com//mysql80-community-release-el7-4.noarch.rpm

这里下载的是mysql80-community-release-el7-4.noarch.rpm,如果需要安装其他版本可以更改版本,所有版本可以到 http://repo.mysql.com 查看
在这里插入图片描述

(2)安装 mysql80-community-release-el7-4.noarch.rpm

yum mysql80-community-release-el7-4.noarch.rpm

在这里插入图片描述

查看可用的安装文件
yum repolist all | grep mysql

在这里插入图片描述

(3)安装mysql

yum install mysql-server

在这里插入图片描述

3、启动mysl

(1)启动mysql服务,并查看

启动
service mysqld start
查看
service mysqld status

在这里插入图片描述

(2)查看临时root密码

grep “A temporary password” /var/log/mysqld.log

在这里插入图片描述

(3)修改密码

连接mysql

mysql -uroot -p

在这里插入图片描述

更改密码

ALTER user ‘root’@‘localhost’ IDENTIFIED BY ‘Abcd@123’;

(4)开启远程登录
安装后mysql8只允许本地登录,需要改成允许远程登录

在这里插入图片描述

更新
update user set host=’%’ where user=‘root’;

在这里插入图片描述

(8)修改mysql8的加密方式规则
默认为 caching_sha2_password ,不是用户名+密码登录,需要改成mysql_native_password

ALTER USER ‘root’@’%’ IDENTIFIED WITH mysql_native_password BY ‘Abcd@123’;

在这里插入图片描述

经过 (7)(8)就可以使用用户名+密码远程登录root用户

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/664407
推荐阅读
相关标签
  

闽ICP备14008679号