1、配置环境变量:右击“我的电脑”-->"高级"-->"环境变量"
3)在(系统变量)path变量(已存在不用新建)添加变量值:G:\MySQL\mysql-5.7.12-winx64\bin(注意变量值之间用“;”隔开)(根据自己的安装路径填写)
2、“开始”-->“运行”-->输入“mysql”-->"Enter",如果没有出现mysql不是内部或外部命令,说明配置成功
3、在bin 目录中(根据自己的安装路径)运行cmd
4.执行 mysqld.exe -install 指令,出现Service successfully installed 证明成功
5.执行mysql --initialize 指令
6.执行 net start mysql 指令
7.修改密码:
(1)执行 指令 :mysql -u root -p
(2)输入初始密码(根据图片):进入data目录,打开.err后缀文件,红圈部分就是密码,复制粘贴
(3)执行指令 :alter user 'root'@'localhost' identified by 'mysql';
(4)执行指令,将密码修改为root:update mysql.user set authentication_string=password('root'), password_expired='N' where user='root';
(5)执行指令:flush privileges;
8.配置好后,在cmd 输入:mysql -uroot -proot 可以进入mysql