Modify MySQL user password

Source: Internet
Author: User
Tags mysql gui mysql gui tools

  1. mysqladmin Command (headings)

    The format is as follows (where user is the username and password is the new password):

    mysqladmin-u user-p Password Password

    After this command, you will be prompted to enter your original password, and you can modify it after entering it correctly.
    For example, to set the root user's password to 123456, the

    Mysqladmin-u root-p Password 123456

  2. UPDATE User statement (headings record)

    This must be done first by logging in to MySQL with the root account and then executing:

    UPDATE user SET Password=password (' 123456 ') WHERE user= ' root ';
    FLUSH privileges;

  3. SET PASSWORD statement (headings record)

    This approach also requires that you log in to MySQL with the root command and then execute:

    SET PASSWORD for Root=password (' 123456 ');

  4. Root password is missing (headings record)

    Using MySQL's own tool "MySQL GUI tools", I have been using the 5.0 version. Run a program MySQLSystemTrayMonitor.exe in the installation directory and the icon will appear in the system tray when you are finished running. If the MySQL service is not already installed, it will not appear, but first configure and install the service via Action>manage MySQL Instances. If the service is already installed, the right mouse button will appear after the "Configure Instance" menu. After clicking, the following MySQL administrator window appears:

    If the original service configuration is normal, select "Startup variable" in the list on the left, and select "Security" in the appropriate right-hand tab, tick "Disable Grant table" and then "Apply Changes".


    And go back to the "server control" on the left, and the corresponding "Start/Stop Services" tab on the right, click Start Service. At this point, the connection to MySQL has no user name and password, you can change the root password.


Modify MySQL user password

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.