关于Mysql 8.0 的坑及安装指定版本mysql-Linux系统

不能再使用简单的密码

必须同时包含大小写,特殊字符
参考博客 https://blog.csdn.net/yi247630676/article/details/80352655
在这里插入图片描述

忘记初始密码的修改密码方法

  1. 设置成免密登录
  2. 使用set password命令将用户表密码置空
  3. 使用空密码登录
  4. 使用alter命令修改新密码

对应步骤

  1. 设置成免密登录
    vim /etc/my.cnf 进入my.cnf 编辑界面,加入skip-grant-tables关于Mysql 8.0 的坑及安装指定版本mysql-Linux系统_第1张图片
    :wq保存并退出
    启动mysql服务:start mysqld.service
    登录mysql mysql -u root
  2. 使用set password命令将用户表密码置空
    mysql>update set password for 用户名@localhost = password('新密码');  

8.0版本的mysql不支持password方法,且password字段已经改变
应该使用下面语句

    mysql>update user set authentication_string = ‘’  where user = 'root' ;  
  1. 使用空密码登录
  2. 使用alter命令修改新密码
     mysql>ALTER USERr user() IDENTIFIED BY  'MyNewPass@123'; 

使用yum 包安装旧版本mysql

官方文档
https://dev.mysql.com/doc/mysql-yum-repo-quick-guide/en/#repo-qg-yum-fresh-install

关于Mysql 8.0 的坑及安装指定版本mysql-Linux系统_第2张图片

命令效果如下
yum repolist all | grep mysql
关于Mysql 8.0 的坑及安装指定版本mysql-Linux系统_第3张图片

sudo yum-config-manager --disable mysql80-community
关于Mysql 8.0 的坑及安装指定版本mysql-Linux系统_第4张图片
sudo yum-config-manager --enable mysql57-community
关于Mysql 8.0 的坑及安装指定版本mysql-Linux系统_第5张图片

mysql 安装步骤
参考文档
http://www.runoob.com/mysql/mysql-install.html
关于Mysql 8.0 的坑及安装指定版本mysql-Linux系统_第6张图片

你可能感兴趣的:(学习笔记,mysql,学习)