How to Reset the MySQL Root Password

lovehewenyu發表於2016-03-10
How to Reset the MySQL Root Password
http://dev.mysql.com/doc/refman/5.6/en/resetting-permissions.html


cat /etc/my.conf
...
[mysqld]
##add parameter##
skip-grant-tables <=without password login
skip-networking   <=prevent remote clients from connecting


[root@dbdou02 tmp]# mysql -uroot -proot
mysql> FLUSH PRIVILEGES;
mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('DOUdou123#');


cat /etc/my.conf
...
[mysqld]
##remove parameter##
#skip-grant-tables
#skip-networking


[root@dbdou02 ~]# mysql -uroot -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.6.29 MySQL Community Server (GPL)


Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.


Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.


Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.


mysql> 


##MySQL root password reset is successful!##




########################################################################################
版權所有,文章允許轉載,但必須以連結方式註明源地址,否則追究法律責任!【QQ交流群:53993419】
QQ:14040928 E-mail:dbadoudou@163.com
本文連結: http://blog.itpub.net/26442936/viewspace-2055047/
********* 6年DBA工作經驗,尋求新工作機會 *********
########################################################################################


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26442936/viewspace-2055047/,如需轉載,請註明出處,否則將追究法律責任。

相關文章