Forgot MySQL password resolution

Source: Internet
Author: User

Workaround:

1. Stop the MySQL process

#/etc/init.d/mysql Stop

Post-Execution output:

Stopping MySQL database server:mysqld.


2. Safe mode start MySQL, skip authorization form

# Mysqld_safe--skip-grant-tables &

Post-Execution output:

[1] 5988
Starting mysqld daemon with databases From/var/lib/mysql
MYSQLD_SAFE[6025]: Started


3. New windows open terminal connected to MySQL

# mysql-u Root


4. Reset Password

mysql> use MySQL;
mysql> Update user Set Password=password ("New-root-password") where user= ' ROOT ';
mysql> flush Privileges;
Mysql> quit


5. Stop MySQL Service

#/etc/init.d/mysql Stop


6. Restart MySQL

#/etc/init.d/mysql Start
# mysql-u Root-p


Forgot MySQL password resolution

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.