お使いのコンピューターが Mac の場合、homebrew を使用して MySQL をインストールするのは非常に便利な方法ですが、それでもいくつかの問題が発生します。この記事では、Mac に homebrew を使用して MySQL をインストールするときにログインできない問題を解決する方法を紹介します。必要な友達は参考にしてください
コンピューターが Mac の場合、homebrew を使用して MySQL をインストールするのは非常に簡単です。便利な方法ですが、依然としていくつかの問題が発生します。
まず mysql がインストールされていることを確認します。homebrew を通じてインストールされている場合は、mysql.server start
と入力してサービスを開始します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';
rrreee と入力した場合
このエラー ERROR 1045 (28000): ユーザー 'zhongchengming'@'localhost' のアクセスが拒否されました (パスワードを使用: YES)。最初のパスワード変更が成功しなかったことを意味します
解決手順
以上がMacにhomebrewを使ってMySQLをインストールする際にログインできない問題の解決策を詳しく解説の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。