一、下载
二、解压、初始化数据库
以windows管理员打开cmd
进入MySQL解压后的bin目录
执行 mysqld --initialize --user=mysql --console
MySQL初始化完成
三、安装mysqld服务
mysqld --install
四、启动mysql服务
net start mysql
五、修改root用户密码
mysql -uroot -p
输入零时密码进入mysql终端
alter user 'root'@'localhost' identified with mysql_native_password_by 'xxxx_password';
六、创建一个非管理员root账号
create user 'root'@'%' identified by 'xxxx_password';