MySQL password change

Source: Internet
Author: User

Http://www.dodiphp.cn/bbsCache/bbs_469.html

1. modify data in the database

Mysql-u root-P press ENTER

Enter Password

Mysql> User MySQL

Mysql> Select User, password from user; # view password

# It can be seen that the password is 41 BITs. It is not recommended to directly modify this table, but it can be modified using the function compute password.

Mysql> select password ('abc ');

# Be careful when changing the password to the calculated value based on specific conditions.

Mysql-u root-P press ENTER

Enter Password

Mysql> User MySQL

Mysql> Select User, password from user; # view password from: exam network-[examw. com]

# It can be seen that the password is 41 BITs. It is not recommended to directly modify this table, but it can be modified using the function compute password.

Mysql> select password ('abc ');

# Be careful when changing the password to the calculated value based on specific conditions.

2. Change the root password to yourpassword in the command line.

Mysqladmin-u root-P password yourpassword press ENTER


Enter the original password

Mysqladmin-u root-P password yourpassword press ENTER

Enter the original password

3. Use set password. For example, change the root password to yourpasswd:

Mysql> set password for root @ localhost = PASSWORD ('yourpasswd ');

Mysql> set password for root @ localhost = PASSWORD ('yourpasswd ');

4. Use Grant... identified. For example, change the root password to youpassword:

Mysql> grant usage on *. * to root @ localhost identified by 'yourpassword ';

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.