mysql忘记密码如何修改
??????????????????????????MYSQL忘記密碼如何修改
1.
[root@localhost ~]# vim /etc/my.cnf
2.
在mysqld下添加一句skip-grant-tables? 保存退出
3.
[root@localhost ~]# service mysql restart
Shutting down MySQL...???????????????????????????????????? [確定]
Starting MySQL.??????????????????????????????????????????? [確定]
4.
[root@localhost ~]# mysql
Welcome to the MySQL monitor.? Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.1.60-log Source distribution
Copyright (c) 2000, 2011, 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.
5.
mysql> use mysql;
Database changed
6.
mysql> UPDATE user SET Password = password ( '123456' ) WHERE User = 'root' ;?? (123456為新密碼)
7.
mysql> flush privileges ;
8.
[root@localhost ~]# vim /etc/my.cnf
#skip-grant-tables
9.
[root@localhost ~]# service mysql restart
10.
完成!!!
?
轉載于:https://blog.51cto.com/5563167/1034601
總結
以上是生活随笔為你收集整理的mysql忘记密码如何修改的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: urllib2介绍(转)
- 下一篇: Java对C语言Dll的加载 和 回调函