zoukankan      html  css  js  c++  java
  • [www.infoshare.cc]mac下安装并配置mysql

    来源:http://www.infoshare.cc/

    1、下载以.dmg结尾mysql安装包

    mysql下载地址:http://dev.mysql.com/downloads/mysql/

    安装过程中,会有一个弹窗提示,注意:XXX的位置是你的初始登录密码

    2016-08-17T15:58:04.890314Z 1 [Note] A temporary password is generated for root@localhost: XXX

    If you lose this password, please consult the section How to Reset the Root Password in the MySQL reference manual.

    2、安装完成之后,设置系统变量,

    vim /etc/profile 

    export PATH=$PATH:/usr/local/mysql/bin/

     

    3、打开电脑-》系统偏好设置-》Start MySQL Server

    启动服务

     

    4、发现登录之后,查询命令输入无用,

    ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

    bash-3.2# mysql -u root -p

    Enter password: XXX(初始登录密码)

    ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)

    bash-3.2# mysql -u root -p

    Enter password: 

    Welcome to the MySQL monitor.  Commands end with ; or g.

    Your MySQL connection id is 2538

    Server version: 5.7.14

     

    Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.

     

    Oracle is a registered trademark of Oracle Corporation and/or its

    affiliates. Other names may be trademarks of their respective

    owners.

     

    Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.

     

    mysql> show databases;

    ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

    mysql> select version(),current_date;

    ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

    5、所以你必须重设登录密码

    mysql> SET PASSWORD = PASSWORD('你自己设置的密码');
    Query OK, 0 rows affected, 1 warning (0.03 sec)

    mysql> ALTER USER 'root'@'localhost' PASSWORD EXPIRE NEVER;
    Query OK, 0 rows affected (0.03 sec)

    mysql> flush privileges;
    Query OK, 0 rows affected (0.03 sec)

     

      

     

     

     

  • 相关阅读:
    存储过程 游标 有用
    Spring框架IOC容器和AOP解析 非常 有用
    业务逻辑;完成根据自动分单结果来决定进行的相关业务处理
    业务逻辑:完成基于分区关键字匹配的自动分单业务逻辑
    业务逻辑:完成基于CRM地址完全匹配的自动分单业务逻辑
    业务逻辑:完成客户下单后前台系统的数据处理并调用后台系统服务处理业务 webservice接口调用 有用
    Spring IOC 少
    Spring IOC 巨多 非常 有用
    Spring ioc
    LeetCode -- Remove Element
  • 原文地址:https://www.cnblogs.com/wonderful0714/p/5787271.html
Copyright © 2011-2022 走看看