1. Modify MySQL login settings: # vim /etc/my.cnf Add a sentence: skip-grant-tables like: [mysqld] datadir=/var/lib/mysql socket=/var/lib/mysql/mysql.sock 2. Restart mysql # service mysqld restart Stopping MySQL: [ OK ] Starting MySQL: [ OK ] 3. Change Password mysql> USE mysql; Database changed mysql> UPDATE user SET Password = password ('new password') WHERE User = 'root'; Query OK, 0 rows affected (0.00 sec) Rows matched: 2 Changed: 0 Warnings: 0 mysql> flush privileges; Query OK, 0 rows affected (0.01 sec) mysql> quit 4. Modify the configuration file you just modified # vim /etc/my.cnf 5. Restart mysql # service mysqld restart Stopping MySQL: [ OK ] Starting MySQL: [ OK ] The above is the method of changing the MySQL password under CentOS introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: What are the new features of Apache Spark 2.4, which will be released in 2018?
>>: Javascript to achieve the effect of closing advertisements
Please see the following screenshot I took from G...
The problems and solutions encountered when deplo...
Table of contents introduce Usage scenarios Sourc...
Install ZLMediaKit on centos6 The author of ZLMed...
The difference between := and = = Only when setti...
This article mainly introduces the implementation...
I don't expect to be an expert DBA, but when ...
1. Unzip the downloaded MySQL compressed package ...
Many people have encountered this error when star...
Shell Script #!/bin/sh # Current directory CURREN...
1. Overall architecture diagram Compared to other...
As the demand for front-end pages continues to in...
For work needs, I found a lot of information on t...
Chapter 1: Introduction to keepalived The purpose...
Table of contents Preface Creating Components Sum...