windows下安装mysql教程
1、下载安装包-根据自己电脑系统选择合适的版本: https://dev.mysql.com/downloads/mysql/
2、配置环境变量
2.1 解压所下载的压缩包
2.2 环境变量
win 10 电脑 这么进去
3、生成data文件
在你解压的目录下,eg:f:\program files\mysql-8.0.17-winx64\bin,以管理员身份运行cmd
执行 mysqld --initialize-insecure --user=mysql 在eg 目录下生成data目录
4、安装mysql
执行命令:mysqld -install
5、启动mysql服务
net start mysql
6、登录修改密码
第一次登录时无密码的,直接enter , mysql -u root -p
查看用户命令: select user,authentication_string from mysql.user;
因为mysql8 之前的版本中加密规则是mysql_native_password,而在mysql8之后,加密规则是caching_sha2_password,
所以想要navicat 能连上mysql, 必须修改mysql用户登录密码加密规则还原成mysql_native_password.
alter user 'root'@'localhost' identified by 'password' password expire never; #修改加密规则
alter user 'root'@'localhost' identified with mysql_native_password by 'password'; #更新一下用户的密码
flush privileges; #刷新权限
alter user 'root'@'localhost' identified by '新密码'; 以这种方式修改密码
7、用navicat 连接mysql即可
推荐阅读
-
mysql 5.7.16 安装配置方法图文教程
-
CentOS 7 中以命令行方式安装 MySQL 5.7.11 for Linux Generic 二进制版本教程详解
-
64位 win10系统安装绿色版mysql-5.7.16-winx64的教程
-
MySQL5.7.16绿色版安装教程详解
-
mysql 5.7.9 winx64在windows上安装遇到的问题
-
mysql 5.7.16 zip包安装配置方法图文教程
-
在centOS 7安装mysql 5.7的详细教程
-
linux下讲解MySQL安装与登录方法
-
mysql5.7安装教程(windows)
-
mysql 8 windows 版本zip方式安装步骤