17站长网

17站长网 首页 数据库 Mysql 查看内容

MySQL的root密码忘记或丢失的解决方法之一

2023-3-16 14:34| 查看: 1458 |来源: 互联网

-bash-4.2$ service mysql statusSUCCESS! MySQL running (2670)-bash-4.2$ mysql -u root -pEnter password:ERROR 1045 (28000): Access denied for user &#3 ...

-bash-4.2$ service mysql status

SUCCESS! MySQL running (2670)

-bash-4.2$ mysql -u root -p

Enter password:

ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)

以下是密码忘记的解决方法:

修改MySQL的参数设置:

# vi /etc/my.cnf

在[mysqld]的段最后一行加上一句:skip-grant-tables

例如:

[mysqld]

........................

log-bin=mysql-bin

innodb_data_file_path = ibdata1:12M;ibdata2:100M;ibdata3:300M:autoextend

innodb_file_per_table=on

max_connections=500

skip-grant-tables    --新增加行

保存并且退出vi.

 

重启MySQL服务:

[root@chenfeng subsys]# service mysql restart

Shutting down MySQL. SUCCESS!

Starting MySQL. SUCCESS!

 

-bash-4.2$ mysql    --不用输密码直接登录

Welcome to the MariaDB monitor.  Commands end with ; or /g.

Your MySQL connection id is 2

Server version: 5.6.15-log Source distribution

  

Copyright (c) 2000, 2015, Oracle, MariaDB Corporation Ab and others.

  

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

  

MySQL [(none)]> show databases;

+--------------------+

| Database           |

+--------------------+

| information_schema |

| chenfeng           |

| mysql              |

| performance_schema |

| test               |

+--------------------+

5 rows in set (0.00 sec)

  

MySQL [(none)]> use mysql

Reading table information for completion of table and column names

You can turn off this feature to get a quicker startup with -A

  

Database changed

MySQL [mysql]>  UPDATE user SET Password = password ('12345678') WHERE User ='root';   --修改为新密码12345678

Query OK, 4 rows affected (0.00 sec)

Rows matched: 4  Changed: 4  Warnings: 0

 

MySQL [mysql]>

MySQL [mysql]> flush privileges;   --刷新一下权限表

Query OK, 0 rows affected (0.00 sec)

 

MySQL [mysql]> quit

Bye

 

将MySQL的参数设置修改回来:

# vi /etc/my.cnf

将刚才在[mysqld]的段中最后一行加上的skip-grant-tables删除,然后保存退出。

 

重启MySQL服务:

[root@chenfeng subsys]# service mysql restart

Shutting down MySQL. SUCCESS!

Starting MySQL. SUCCESS!

  

重新用新密码登录:

-bash-4.2$ mysql -u root -p12345678      --12345678为新密码

Welcome to the MariaDB monitor.  Commands end with ; or /g.

Your MySQL connection id is 7

Server version: 5.6.15-log Source distribution

  

Copyright (c) 2000, 2015, Oracle, MariaDB Corporation Ab and others.

  

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

  

MySQL [(none)]> use mysql

Reading table information for completion of table and column names

You can turn off this feature to get a quicker startup with -A

  

Database changed

MySQL [mysql]> show databases;

+--------------------+

| Database           |

+--------------------+

| information_schema |

| chenfeng           |

| mysql              |

| performance_schema |

| test               |

+--------------------+

5 rows in set (0.00 sec)

MySQL [mysql]> 

本文最后更新于 2023-3-16 14:34,某些文章具有时效性,若有错误或已失效,请在网站留言或联系站长:17tui@17tui.com
·END·
站长网微信号:w17tui,关注站长、创业、关注互联网人 - 互联网创业者营销服务中心

免责声明:本站部分文章和图片均来自用户投稿和网络收集,旨在传播知识,文章和图片版权归原作者及原出处所有,仅供学习与参考,请勿用于商业用途,如果损害了您的权利,请联系我们及时修正或删除。谢谢!

17站长网微信二维码

始终以前瞻性的眼光聚焦站长、创业、互联网等领域,为您提供最新最全的互联网资讯,帮助站长转型升级,为互联网创业者提供更加优质的创业信息和品牌营销服务,与站长一起进步!让互联网创业者不再孤独!

扫一扫,关注站长网微信

大家都在看

    热门排行

      最近更新

        返回顶部