1、从官网下载安装包 https://dev.mysql.com/downloads/mysql/
2、下载》解压
3、以管理员权限进入cmd,进入到解压后的mysql的bin目录
1)运行:mysqld --initialize --console 记录产生的密码
2)安装服务:mysqld -install
3)启动mysql服务,输入net start mysql或sc start mysql
4)登录:mysql -u root -p
5)输入上面产生的密码
6)登录后修改密码:
alter user 'root'@'localhost' identified by '想要设置的密码';
commit;
4、配置环境变量
把安装目录根目录添加到path中。
安装问题:
1、已安装历史版本,无法安装新的mysql
1)关闭服务(如果启动了):
任务管理器中找到mysql服务,右键停止服务
2)卸载:卸载服务 :
sc delete mysql
3)删除安装目录:
2、无法安装服务:权限不足--设置完全控制
1)icacls “E:\*.*” /grant Users:(F)
2)cmd没有使用管理员权限打开
3、密码无法登陆
1)查看是否启动了mysql服务
2)如果无法登陆,重新执行安装步骤
4、使用工具无法连接msyql8
一般是密码规则的问题,修改密码编码
依次输入:
alter user 'root'@'localhost' identified by '你的密码' password expire never; alter user 'root'@'localhost' identified with mysql_native_password by '你的密码' flush privileges;
参考:
https://blog.csdn.net/jsugs/article/details/124143762
http://www.mofazhu.com/jiaocheng/win10/36817.html
https://blog.csdn.net/qq_47770103/article/details/120043596