• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    解决mac使用homebrew安装MySQL无法登陆问题

    如果你电脑是Mac的,使用homebrew安装MySQL是一个非常便捷的方式,但是还是会出现一些问题;

    首先保证你已经安装了mysql,如果是通过homebrew安装的,输入mysql.server start 启动服务

    如果在输入

    mysql -u root

    出现这个错误ERROR 1045 (28000): Access denied for user 'zhongchengming'@'localhost' (using password: YES),应该是修改初始密码没有成功

    解决步骤

    (1)终端输入mysqld_safe --skip-grant-tables 显示如下

    2017-03-21T11:44:11.6NZ mysqld_safe Logging to '/usr/local/var/mysql/zhongchengmingdeMacBook-Air.local.err'.
    2017-03-21T11:44:11.6NZ mysqld_safe Logging to '/usr/local/var/mysql/zhongchengmingdeMacBook-Air.local.err'.
    2017-03-21T11:44:11.6NZ mysqld_safe A mysqld process already exists

     (2)再次输入mysql -u root显示如下

    Welcome to the MySQL monitor.  Commands end with ; or \g.
    Your MySQL connection id is 10
    Server version: 5.7.17 Homebrew
    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>

       (3)终端输入 use mysql显示如下

    Reading table information for completion of table and column names
    You can turn off this feature to get a quicker startup with -A
    Database changed
    mysql>

    (4)修改密码UPDATE mysql.user SET authentication_string=PASSWORD('你的密码') WHERE User='root';

      成功  Query OK, 1 row affected, 1 warning (0.05 sec)

      Rows matched: 1  Changed: 1  Warnings: 1

    以上所述是小编给大家介绍的解决mac使用homebrew安装MySQL无法登陆问题,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

    您可能感兴趣的文章:
    • Mac OS10.11下mysql5.7.12 安装配置方法图文教程
    • mysql 5.7.13 安装配置笔记(Mac os)
    • MAC下mysql安装配置方法图文教程
    • Mac 安装和卸载 Mysql5.7.11 的方法
    • mac系统OS X10.10版本安装最新5.7.9mysql的方法
    • Mac上安装MySQL过程分享
    • 在MAC OS X上安装MYSQL
    上一篇:MySQL几点重要的性能指标计算和优化方法总结
    下一篇:MySql登陆密码忘记及忘记密码的解决方案
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    解决mac使用homebrew安装MySQL无法登陆问题 解决,mac,使用,homebrew,安装,