How to forget the password of MySQL in Windows and Linux

Source: Internet
Author: User

Windows:
1. log on to the system as a system administrator.
2. Stop MySQL services.
3. Enter the command window (CMD), and then enter the MySQL installation directory. For example, if my installation directory is C:/MySQL, enter C:/MySQL/bin.
4. Skip the permission check and start MySQL,
C:/MySQL/bin> mysqld-NT -- skip-grant-tables
5. Open a new cmd window, enter the C:/MySQL/bin directory, and set the new root password.
C:/MySQL/bin> mysqladmin-u root flush-Privileges password "newpassword"
C:/MySQL/bin> mysqladmin-u root-P Shutdown
Replace newpassword with the root password you want to use. The second command will prompt you to enter a new password and repeat the password entered by the first command.
6. Stop MySQL server and start MySql in Normal Mode
7. You can use a new password to link to MySQL.

UNIX & Linux:
1. log on to the system using root or a user running mysqld;
2. Use the kill command to end the mysqld process;
3. Use the -- skip-grant-tables parameter to start MySQL Server
Shell> mysqld_safe -- skip-grant-tables &
4. Set a new password for root @ localhost
Shell>; mysqladmin-u root flush-Privileges password "newpassword"
. Restart MySQL Server

Kill-9 MySQL process
Mysqld_safe -- user = MySQL -- skip-grants-table

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.