日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > 数据库 >内容正文

数据库

navicat连接mysql闪退_Navicat连接MySql8.0的各种问题及解决方法

發布時間:2024/9/15 数据库 58 豆豆
生活随笔 收集整理的這篇文章主要介紹了 navicat连接mysql闪退_Navicat连接MySql8.0的各种问题及解决方法 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

navicat連接mysql8.0親測有效

今天下了個 mysql8.0,發現navicat連接不上,總是報錯1251;

原因是mysql8.0版本的方式和mysql5.0的不一樣,連接會報錯。

試了很多種方法,終于找到一種可以實現的:

更改加密方式

1.先通過命令行進入mysql的root賬戶:

ps c:\windows\system32> mysql -uroot -p

再輸入root的密碼:

enter password: ******

welcome to the mysql monitor. commands end with ; or \g.

your mysql connection id is 18

server version: 8.0.11 mysql community server - gpl

copyright (c) 2000, 2018, oracle and/or its affiliates. all rights reserved.

oracle is a registered trademark of oracle corporation and/or its

affiliates. other names may be trademarks of their respective

owners.

type 'help;' or '\h' for help. type '\c' to clear the current input statement.

mysql>

2.更改加密方式:

mysql> alter user 'root'@'localhost' identified by 'password' password expire never;

query ok, 0 rows affected (0.10 sec)

3.更改密碼:

mysql> alter user 'root'@'localhost' identified with mysql_native_password by 'password';

query ok, 0 rows affected (0.35 sec)

4.刷新:

mysql> flush privileges;

query ok, 0 rows affected (0.28 sec)

// 如果報錯error 1396 (hy000): operation alter user failed for 'root'@'%':

則是遠程訪問權限不正確,先選擇,查看一下再更改:

mysql> use mysql;

database changed

mysql> select user,host from user;

+------------------+-----------+

| user | host |

+------------------+-----------+

| mysql.infoschema | localhost |

| mysql.session | localhost |

| mysql.sys | localhost |

| root | localhost |

+------------------+-----------+

5 rows in set (0.00 sec)

如您對本文有疑問或者有任何想說的,請點擊進行留言回復,萬千網友為您解惑!

總結

以上是生活随笔為你收集整理的navicat连接mysql闪退_Navicat连接MySql8.0的各种问题及解决方法的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。