Forgot MySQL root password, how to do not restart the change

Source: Internet
Author: User

The premise is that MYSQLD can handle signals sent by the kill command, such as Sighup, sigterm,sighup signals that produce behavior similar to the flush command.

Do not restart the root password will need to have a lower-privileged account, such as the test library can be modified, or can operate any business database account. This is modified using the test library.

1. Copy the relevant files from the Mysql.user table to the data directory of the test library and modify the permissions:
cd  /data/database/mysqlcp mysql/user.* test/ chown mysql:mysql -R test
2, the use of ordinary accounts to modify the Test.user table:
mysql -uadmin -p123456 -S /tmp/mysql.sock mysql> update user set Password=password(‘dd8022bf7a0d1f24‘) where User=‘root‘;
3. Overwrite the modified Test.user table with the Mysql.user table, and note back up the old Mysql.user table:
cd  /data/database/mysqlmv  test/user.*  mysql/
5, to the MYSQLD process SIGHUP signal, refresh permissions:
kill -SIGHUP  ${mysqld_pid}

Forgot MySQL root password, how to do not restart the change

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.