Home > Database > Mysql Tutorial > body text

Detailed explanation of the solution to the problem of being unable to log in when installing MySQL using homebrew on Mac

黄舟
Release: 2017-03-23 13:57:09
Original
2273 people have browsed it

If your computer is a Mac, using homebrewto installMySQL is a very convenient way, but some problems will still occur. The following article will introduce to you how to solve the problem of being unable to log in when using homebrew to install MySQL on Mac. Friends who need it can refer to

If your computer is a Mac, using homebrew to install MySQL is a very convenient way, but it still occurs. Some questions;

First make sure you have installed mysql. If it is installed through homebrew, enter mysql.server start Start the service

If you enter

mysql -u root
Copy after login

This error ERROR 1045 (28000): Access denied for user 'zhongchengming'@'localhost' (using password: YES), it should be that the initial password was not modified successfully

Solution Steps

(1) Enter mysqld_safe --skip-grant-tables in the terminal and the display will be as follows

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
Copy after login

(2) Enter mysql -u root again and the display will be as follows

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>
Copy after login

(3) The terminal input use mysql displays as follows

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>
Copy after login

(4) Change password UPDATE mysql.user SET authentication_string=PASSWORD('your password') WHERE User='root';

Success Query OK, 1 row affected, 1 warning (0.05 sec)

Rows matched: 1 Changed: 1 Warnings: 1

The above is the detailed content of Detailed explanation of the solution to the problem of being unable to log in when installing MySQL using homebrew on Mac. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!