Solve the problem of being unable to log in when installing MySQL on mac using homebrew

Solve the problem of being unable to log in when installing MySQL on mac using homebrew

If your computer is a Mac, using homebrew to install MySQL is a very convenient way, but there are still some problems;

First, make sure you have installed MySQL. If you installed it via homebrew, type mysql.server start to start the service.

If you enter

mysql -u root

This error ERROR 1045 (28000): Access denied for user 'zhongchengming'@'localhost' (using password: YES) appears. It should be that the initial password was not successfully changed.

Solution steps

(1) Enter mysqld_safe --skip-grant-tables in the terminal and the following is displayed:

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) Enter mysql -u root again and the following is displayed

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) Enter use mysql in the terminal and the following is displayed

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) Change password UPDATE mysql.user SET authentication_string=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 what I introduced to you about solving the problem of not being able to log in when installing MySQL on Mac using homebrew. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • MySQL 5.7.12 installation and configuration tutorial under Mac OS 10.11
  • MySQL 5.7.13 Installation and Configuration Notes (Mac OS)
  • MySQL installation and configuration method graphic tutorial under MAC
  • How to install and uninstall MySQL 5.7.11 on Mac
  • How to install the latest 5.7.9mysql on mac OS X10.10
  • Sharing the process of installing MySQL on Mac
  • Install MYSQL on MAC OS X

<<:  Configure VIM as a C++ development editor in Ubuntu

>>:  How to use JSX in Vue

Recommend

Linux method example to view all information of the process

There is a task process on the server. When we us...

Detailed explanation of how to manually deploy a remote MySQL database in Linux

1. Install mysql Run the following command to upd...

Text pop-up effects implemented with CSS3

Achieve resultsImplementation Code html <div&g...

Introduction to MySQL <> and <=> operators

<> Operator Function: Indicates not equal t...

Three examples of blur background effects using CSS3

Let’s not start with the introduction and get str...

Tutorial diagram of installing centos7.3 on vmware virtual machine

VMware Preparation CentOS preparation, here is Ce...

Linux configuration SSH password-free login "ssh-keygen" basic usage

Table of contents 1 What is SSH 2 Configure SSH p...

Docker installation tomcat dubbo-admin instance skills

1. Download the tomcat image docker pull tomcat:8...

Troubleshooting and solutions for MySQL auto-increment ID oversize problem

introduction Xiao A was writing code, and DBA Xia...

MySQL 5.7.23 installation and configuration method graphic tutorial

This article records the installation tutorial of...

CSS text alignment implementation code

When making forms, we often encounter the situati...

Practical Optimization of MySQL Paging Limit

Preface When we use query statements, we often ne...