Multiple methods for setting passwords for users in mysql _ MySQL

Source: Internet
Author: User
Multiple methods for setting passwords for users in mysql: bitsCN.com when you installed Mysql on the machine for the first time, you can access the database anonymously or enter the database as a root without a password. in addition, if you are an administrator, you need to establish and authorize some users, which also involves setting passwords. next we will discuss how to set a password:
First, we should know that password storage in the Mysql database must be encrypted using the password () function. because the user table stores passwords in encrypted form, rather than plain text. if you are not encrypted, execute the following statement in the database:

Use mysql
Insert into user (host, user, password) values ('%', 'User _ name', 'Your password ');
Flush privileges;

I believe the results will not satisfy you. because the server compares the encrypted value, the server connection may fail. note that flush privileges is used to reload the authorization table. you can also use mysqladmin-u root reload or mysqladmin-u root flush-privileges in shell to implement the reload authorization table.
In the Mysql environment, you can use the following statement to set the password:

1. insert into user (host, user, password) values ('%', 'User _ name', password ("your password ");
2. set password for user_name = password ("your password ")

The above two methods must be used to reload the authorization table.
3. of course, you can set a password when creating a user. The grant statement will automatically encrypt the password for you.
For example
Grant all on *. * to user_name @ % identified by "your password ";
In addition, you can use the mysqladmin program in the shell environment to set the password.
For example
Mysqladmin-u root password "your password"
Hurry up and have a try. No problem!

How to set a password for mysql

There are many methods:
1. after entering mysql with root
Mysql> set password = password ('your password ');
Mysql> flush privileges;

2. use the GRANT statement
Mysql> grant all on *. * to 'root' @ 'localhost' identified by 'Your password' with grant option; www.bitsCN.com
Mysql> flush privileges;

3. go to the mysql database to modify the user table
Mysql> use mysql;
Mysql> update user set password = password ('your password') where user = 'root ';
Mysql> flush privileges;

Author matthiobitsCN.com

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.