美文网首页
mysql安装

mysql安装

作者: 葬龙王 | 来源:发表于2019-01-27 21:47 被阅读0次

    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

    无标题.png
    再运行 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;

    相关文章

      网友评论

          本文标题:mysql安装

          本文链接:https://www.haomeiwen.com/subject/pninjqtx.html