一、下载MySQL
MySQL官网下载:http://www.mysql.com
找到 MySQL Community (GPL) Downloads
点击 MySQL Community Server
点击下载
点击 No thanks, just start my download 。
二、安装MySQL
打开刚刚下载好的安装包,开始安装MySQL。
选择Developer Default,然后next。
检查安装条件,直接点击next进入下一步就可以了。
点击execute执行就可以了,执行完后点击next进入下一步。
此时会报错;no compatible servers。如下图:
重新安装。选择64位的数据库。
点了Next之后发现会弹框报错,缺了c++ 2003的运行库。然后返回先安装运行库。
装完之后一直按Next。
设置root密码然后点击next进入下一步。
直到finish,安装完成。
配置环境变量:此电脑—>右键属性—>高级系统设置—>环境变量—>在Path中添加MySQL的安装路径
三、测试是否安装成功
在地址栏中输入cmd进入命令窗口。输入mysql -u root -p后回车,然后会提示输入密码,输入密码后就会进入MySQL的操作管理界面。 输入show databases;(注意末尾有分号)可以查看当前MySQL中的数据库列表,输入use test;可以进入test数据库(前提是要有此数据库),输入show tables可以查看test数据库中的所有表,输入quit可以退出MySQL的操作管理界面。
可能出现的问题:
Navicat连接mysql出现1251–Client does not support authentication protocol requested by server
用软件登陆的Mysql8数据库时,报错:Authentication plugin ‘caching_sha2_password’ cannot be loaded。原因是mysql8 之前的版本中加密规则是mysql_native_password,而在mysql8之后,加密规则是caching_sha2_password。
解决方法:
①登陆数据库
mysql -u root -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>
③更改加密方式
ALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER;
④更改密码:该例子中 123456为新密码
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '123456';
⑤刷新
FLUSH PRIVILEGES;