当前位置:   article > 正文

Mysql8.0配置问题_how to change mysql 8.0 user plugin

how to change mysql 8.0 user plugin

一、authentication plugin ‘caching_sha2_password’ -navicat连接问题解决

安装:https://dev.mysql.com/downloads/mysql/

原因:mysql版本身份验证引起的,

官网解释:https://dev.mysql.com/doc/refman/8.0/en/caching-sha2-pluggable-authentication.html

解决方法:

修改加密方式如下:


// 修改加密规则
ALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER; 
// 更新一下用户的密码 
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';
// 刷新权限 
FLUSH PRIVILEGES;
// 最后重置下密码:
alter user 'root'@'localhost' identified by '123456';
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
(1)#default_authentication_plugin=caching_sha2_password=>修改为
default_authentication_plugin=mysql_native_password
(2)修改配置文件

配置:引用MySql.Data.dll 需要修改配置文件(MySQL8.0默认配置文件为隐藏my.ini ;
(/ProgramData\MySQL\MySQL Server 8.0)
在这里插入图片描述

(3)重启服务

二、测试语句:


             String connecStr = "server=127.0.0.1;port=3306;user=root;password=***;database=***;";            
             MySqlConnection conn = new MySqlConnection(connecStr);
            try
            {
                conn.Open();//打开通道,建立连接,可能出现异常,使用try catch语句
                Console.WriteLine("已经建立连接");
                //在这里使用代码对数据库进行增删查改
            }
            catch (MySqlException ex)
            {
                Console.WriteLine(ex.Message);
            }
            finally
            {
                conn.Close();
            }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/307943
推荐阅读
相关标签
  

闽ICP备14008679号