LINUX Navicat 错误代码 1689
注意 修改错误会修改LINUX 内部配置文件 所以请要修改的内容注释后再进行修改 这样可以有效防止内部配置文件错误
下面进行错误代码改正
-
打开linux的shell 输入 打开mysql配置文件
sudo vim /etc/mysql/mysql.conf.d/mysqld.cnf
-
在如下位置,加入 skip-grant-tables
-
打开linux shell 输入:mysql -umysql -p 你的mysql 密码
mysql -umysql -pmysql
-
使用mysql数据库
use maysql;
-
查看用户 和 plugin
select user,plugin from use;
-
修改root的plugi 在mysql的shell 输入
update user set authentication_string=password('你的密码'),plugin='mysql_natice_password' where user='root';
-
查看root用户的plugin是否修
select user,plugin from user;
8.退出mysql 在mysql的shell输入Quit
9.给mysql配置加注释
select user,plugin from user;
10.重新连接