推荐教程:mysql数据库入门视频教程
1、打开mysql自带命令行
2、输入安装mysql时设定的密码后,输入命令行use mysql
3.、select user,host,plugin,authentication_string from user;查看用户,密码插件等信息。
4、alter user 'username'@'ip_address' identified with mysql_native_password by 'password';使用该语句更改,例如我的'root'@'localhost'替换掉'username'@'ip_address',新的密码例'123456'替换掉'password'。
注意新的密码不能和之前的密码一样,否则设置不成功。
之后可以通过上一句进行查看验证。
以上就是navicat安装出错2059的详细内容。