How to set password for mysql version 5.6 on mac

How to set password for mysql version 5.6 on mac

MySQL can be set when it is installed, but it seems that lower versions cannot be set and need to be set after installation.

Under mac, mysql5.7.18 connection error, error message: Access denied for user 'root'@'localhost' (using password: YES)

The commands in () are entered in the shell. You must enter them in full, including symbols such as ; &

Step 1: Apple->System Preferences->Click MySQL at the bottom to turn off the MySQL service

Step 2: Enter the terminal and type (cd /usr/local/mysql/bin/) and press Enter

Type (sudo su) and press Enter to obtain administrator privileges.

Enter (./mysqld_safe --skip-grant-tables &) and press Enter to disable the mysql authentication function. MySQL will automatically restart and the mysql status in the preferences will become running.

Step 3: Enter the command (./mysql) and press Enter

Enter the command (flush privileges;) Don’t forget to enter the semicolon

Enter the command (set password for 'root'@'localhost' = password('root');) The root in password('root') is the new password. You can set it at will. Don't forget to enter the semicolon.

At this point, the password has been changed successfully and you can log in normally.

Summarize

The above is the simple method I introduced to you for setting the password for MySQL version 5.6 on Mac. 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!

You may also be interested in:
  • The problem of not being able to remember the SVN password of idea under mac and the solution
  • Example code for resetting PostgreSQL password on Mac
  • Solution to the problem that IntelliJ IDEA's SVN cannot save passwords on MAC
  • How to reset mysl8.0.11 password on mac
  • Tutorial on resetting the root password of Mac MySQL
  • Solution to forgetting the MYSQL database password under MAC
  • Solution to forget password when installing MySQL on Linux/Mac
  • What to do if you forget the initial password when installing MySQL on Mac
  • Common methods for retrieving system account and password on MAC

<<:  Summary of Docker configuration container location and tips

>>:  Detailed explanation of using Nodejs built-in encryption module to achieve peer-to-peer encryption and decryption

Recommend

HTML code that can make IE freeze

We simply need to open any text editor, copy the f...

Methods and techniques for designing an interesting website (picture)

Have you ever encountered a situation where we hav...

Use IISMonitor to monitor web pages and automatically restart IIS

Table of contents 1. Tool Introduction 2. Workflo...

MySQL Index Optimization Explained

In daily work, we sometimes run slow queries to r...

Implementation of MySQL5.7 mysqldump backup and recovery

MySQL backup Cold backup:停止服務進行備份,即停止數據庫的寫入Hot ba...

Detailed steps to install Anaconda on Linux (Ubuntu 18.04)

Anaconda is the most popular python data science ...

In-depth understanding of the creation and implementation of servlets in tomcat

1. What is a servlet 1.1. Explain in official wor...

React+Typescript implements countdown hook method

First, setInterval is encapsulated as a Hook 👇 im...

MySQL case when group by example

A mysql-like php switch case statement. select xx...

JavaScript design pattern chain of responsibility pattern

Table of contents Overview Code Implementation Pa...

Detailed steps to install CentOS7 system on VMWare virtual machine

Pre-installation work: Make sure vmware workstati...

Solution to Linux not supporting all commands

What should I do if Linux does not support all co...

Problems with creating placeholders for HTML selection boxes

I'm using a placeholder in a text input and i...