mysql8 centos7 安装

Posted 趟坑的

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql8 centos7 安装相关的知识,希望对你有一定的参考价值。

 

找官方下载地址:

https://dev.mysql.com/downloads/repo/yum/

第一步

选择 red hat x86 64-bit 

选择 noarch.RPM包

 

 

 

第二步:下载rpm包

wget https://dev.mysql.com/get/mysql80-community-release-el7-2.noarch.rpm

 

第三步: 安装rpm包

rpm -Uvh mysql80-community-release-el7-2.noarch.rpm

 

第四步: yum安装

yum install mysql-community-server

 

第五步: 安装完毕,查看密码

tail /var/log/mysqld.log

 

修改密码验证方式

vi /etc/my.cnf

default_authentication_plugin=mysql_native_password

 

第六步: 登录mysql

mysql -uroot -p

第7步: 修改初始密码

先把密码策略改一下,@@表示设置持久化,全局变量

set @@global.validate_password.length=4;

set @@global.validate_password.policy=LOW;

改密码

alter user \'root\'@\'localhost\' identified by \'123456\';

 

第八步:创建一个超级用户替代root 

create user \'tom\'@\'%\' identified by \'123456\';

grant all privileges on *.* to \'tom\'@\'%’;

如果现在用客户端连接,会出现 caching_sha2_xxxx模块缺失,要改一下密码策略

ALTER USER \'tom\'@\'%\' IDENTIFIED WITH mysql_native_password BY \'123456\';

 FLUSH PRIVILEGES;

 

 

记住几个目录:

show variables like \'%datadir%\';

 

以上是关于mysql8 centos7 安装的主要内容,如果未能解决你的问题,请参考以下文章

centos7安装mysql8.0

Centos7安装mysql8教程

centos7在线安装mysql8

Centos7 安装Mysql8.0

centos7系统安装mysql8脚本(20200617)

Centos7安装Mysql8