Modify MySQL user password

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

Modify MySQL user password

Directory
    1. Mysqladmin command
    2. UPDATE User Statement
    3. SET PASSWORD Statement
    4. Root password loss (to be verified)
    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:


This article is from "_xiaohan" blog, please make sure to keep this source http://yingmeng.blog.51cto.com/5365464/1558599

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.