How to solve the error when connecting to MySQL in Linux: Access denied for user 'root'@'localhost'(using password: YES)

How to solve the error when connecting to MySQL in Linux: Access denied for user 'root'@'localhost'(using password: YES)

Preface

Recently connected to mysql /usr/local/mysql/bin/mysql -uroot -p

When I enter the password, an error message appears: Access denied for user 'root'@'localhost'(using password: YES) . Let’s take a look at the detailed solution.

Solution:

1. Stop the mysql service first

service mysqld stop 


2. Enter the MySQL installation directory bin/ and use safe mode to restart:

./mysqld_safe --skip-grant-tables 


3. Use the root account, log in without a password, and change the root user password

mysql -u root 
use mysql
update user set password=PASSWORD("your password") where User = 'root';

4. Restart mysql and log in normally

service mysqld restart 


/usr/local/mysql/bin/mysql -uroot -p and then enter the password you just reset

Done, connection successful!

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM.

You may also be interested in:
  • 4 solutions to mysql import csv errors
  • Problems and solutions of error 08001 when linking to MySQL in IDEA and no table display after successful connection
  • Problems and solutions for IDEA connecting to MySQL
  • Solution to the problem that synchronous replication errors cannot be skipped in MySQL5.6 GTID mode
  • Solution to ONLY_FULL_GROUP_BY error in Mysql5.7 and above
  • MySQL Error 1290 (HY000) Solution
  • Detailed explanation of the solution to the error in creating a user and granting permissions in mysql8.0
  • Django restarts after reinstalling MySQL and reports an error: How to solve the problem of No module named 'MySQLdb'
  • Solution to the error message "java.sql.SQLException: Incorrect string value:'\xF0\x9F\x92\xA9\x0D\x0A...'" when storing emoticons in MySQL
  • Description and solution of MySQLdb error when installing Python
  • Teach you how to solve the error when storing Chinese characters in MySQL database

<<:  How to install iso file in Linux system

>>:  JavaScript to achieve Taobao product image switching effect

Recommend

How to configure pseudo-static and client-adaptive Nginx

The backend uses the thinkphp3.2.3 framework. If ...

In-depth understanding of javascript class array

js array is probably familiar to everyone, becaus...

Javascript common higher-order functions details

Table of contents 1. Common higher-order function...

Solution to index failure caused by MySQL implicit type conversion

Table of contents question Reproduction Implicit ...

Implementation of modifying configuration files in Docker container

1. Enter the container docker run [option] image ...

Mini Program implements custom multi-level single-select and multiple-select

This article shares the specific code for impleme...

How to prevent Flash from covering HTML div elements

Today when I was writing a flash advertising code,...

Implementation of nacos1.3.0 built with docker

1. Resume nacos database Database name nacos_conf...

How to insert a link in html

Each web page has an address, identified by a URL...

MySQL optimization connection optimization

In the article MySQL Optimization: Cache Optimiza...

Detailed explanation of soft links and hard links in Linux

Table of contents 1. Basic storage of files and d...

How does MySQL ensure master-slave consistency?

Table of contents The basic principle of MySQL ma...

Vue implements Tab tab switching

This article example shares the specific code of ...