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再次连接就可以成功了。