1.下載安裝包
鏈接:https://pan.baidu.com/s/1hP3cD9aTv8nvJfNwjXPdrQ
提取碼:xmsu
2.解壓安裝包 選擇.exe 文件然后 安裝
選擇自己要安裝的位置。
3.安裝完成之后 點擊剛才解壓出來的另一個文件 選擇navicat.exe 打開
4.最后出現 然后就完成了。
------------------------------------------------------------------------------------------------------------------------------------------------------------
我在連接數據庫的時候出現了問題。出現了錯誤提示
1251-Client does not support authentication protocol requested by server; consider upgrading MySQL client
解決方法:
1.打開 cmd
2.mysql -u root -p 輸入密碼 進入mysql
3. alter user root@localhost identified by '123456' password expire never; //“123456” 你的數據庫密碼
4. alter user root@localhost identified with mysql_native_password by '123456';
5.flush privileges;
結束之后。。。。打開Navicat再次連接就可以成功了。