mysql user changes password, mysql changes password_PHP tutorial

WBOY
Release: 2016-07-12 08:58:08
Original
1226 people have browsed it

mysql user changes password, mysql changes password

1: Use the SET PASSWORD command
to first log in to MySQL.
Format: mysql> set password for username@localhost = password('new password');

2: Use mysqladmin
Format: mysqladmin -u username- pOld password password New password

3: Use UPDATE to directly edit the user table
First log in to MySQL.
mysql> use mysql;
mysql> update user set password=password('123') where user='root' and host='localhost';
mysql> flush privileges;

4: When you forget the root password, you can do this
Take windows as an example:
1. Close the running MySQL service.
2. Open the DOS window and go to the mysqlbin directory.
3. Enter mysqld --skip-grant-tables and press Enter. --skip-grant-tables means to skip the authorization table authentication when starting the MySQL service.
4. Open another DOS window (because the DOS window just now cannot be moved) and go to the mysqlbin directory.
5. Enter mysql and press Enter. If successful, the MySQL prompt > will appear.
6. Connect to the permission database: use mysql;.
6. Change password: update user set password=password("123") where user="root"; (don’t forget to add the semicolon at the end).
7. Refresh privileges (required step): flush privileges;.
8. Quit.
9. Log out of the system, re-enter, and log in using the username root and the new password 123 you just set.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1105140.htmlTechArticlemysql user changes password, mysql changes password 1: First log in to MySQL using the SET PASSWORD command. Format: mysql set password for username@localhost = password('new password'); 2: Use mysq...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!