1.根据菜鸟教程步骤
http://www.runoob.com/mysql/mysql-install.html
2.注意bug
bug1:mysqld install 时候提示 mysql Install/Remove of the Service Denied!
需要使用管理员打开cmd.exe
路径:C:\Windows\System32
再运行 mysqld install
bug2:在进行mysql操作时提示
You must reset your password using ALTER USER statement before executing this statement
报错处理tep1:
MySQL版本5.7.6版本以前用户可以使用如下命令:
mysql>
SET PASSWORD = PASSWORD('root123');
MySQL版本5.7.6版本开始的用户可以使用如下命令:
mysql>ALTER USER USER() IDENTIFIED BY 'root123';
tep2:
mysql>flush privileges;
网友评论