Resetting mysqlroot password (available for test) _ MySQL
Source: Internet
Author: User
Mysqlroot password resetting method (available for test) bitsCN.com note! .
1. prerequisites
First, make sure that the server is in a secure state, that is, no one can connect to the MySQL database at will.
Because, during the resetting of the MySQL root password, the MySQL database is completely out of password-free
Other users can log on to and modify MySQL information as needed. You can use
The external port is closed, and Apache and all user processes are stopped to implement server quasi-security.
Status. The safest status is to operate on the server Console and unplug the network cable.
2. modify MySQL logon settings:
# Vi/etc/my. cnf
In the [mysqld] section, add skip-grant-tables.
For example:
[Mysqld]
Datadir =/var/lib/mysql
Socket =/var/lib/mysql. sock
Skip-grant-tables
Save and exit vi.
4. log on to and modify the MySQL root password
#/Usr/bin/mysql
Welcome to the MySQL monitor. Commands end with; or/g.
Your MySQL connection id is 3 to server version: 3.23.56
Type 'help; 'or'/h' for help. type'/C' to clear the buffer.
Mysql> USE mysql;
Reading table information for completion oftable and column names
You can turn off this feature to get aquicker startup with-
Database changed
Mysql> UPDATE user SET Password = password ('new-password') WHERE User = 'root ';
Query OK, 0 rows affected (0.00 sec)
Rowsmatched: 2 Changed: 0 Warnings: 0
Mysql> flush privileges;
Query OK, 0 rows affected (0.01 sec)
Mysql> quit
Bye
5. modify the MySQL logon settings.
# Vi/etc/my. cnf
Delete the skip-grant-tables added to the [mysqld] section.
Save and exit vi.
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.