博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql 报错ERROR 1820 (HY000):You must resetpassword
阅读量:6257 次
发布时间:2019-06-22

本文共 1374 字,大约阅读时间需要 4 分钟。

今天登录mysql(Server version: 5.7.11) 还是很好的,今天登录后执行任何命令都报下面的错误

mysql> help contents

ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
mysql> help contents
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
mysql> show databases;
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

解决办法

1、 修改用户密码
mysql> alter user 'root'@'localhost' identified by 'youpassword';  

或者       

mysql> set password=password("youpassword");

2、刷新权限
mysql> flush privileges;

mysql> help contents

You asked for help about help category: "Contents"
For more information, type 'help <item>', where <item> is one of the following
categories:
   Account Management
   Administration
   Compound Statements
   Data Definition
   Data Manipulation
   Data Types
   Functions
   Functions and Modifiers for Use with GROUP BY
   Geographic Features
   Help Metadata
   Language Structure
   Plugins
   Procedures
   Storage Engines
   Table Maintenance
   Transactions
   User-Defined Functions
   Utility
mysql> show databases
-> ^C
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| sys |
+--------------------+
4 rows in set (0.01 sec)

mysql>

mysql>

问题解决,希望能帮助到大家。

转载于:https://blog.51cto.com/victorly/2312619

你可能感兴趣的文章
nginx初始化遇到的问题。
查看>>
Excel 2010无法打开xls文件!说文件已损坏 解决方法
查看>>
jdk1.7新特性
查看>>
设计模式17——Observer设计模式
查看>>
Android新建Activity
查看>>
浅谈mysql主从同步及错误1146处理
查看>>
HSRP在企业网中的应用
查看>>
Intellij IDEA 使用Spring-boot-devTools无效解决办法
查看>>
VMware Fusion v5.0.1 Multilingual MacOSX 多语言版
查看>>
Bitlocker分区数据丢失了怎么找回
查看>>
我的友情链接
查看>>
linux下Bash编程组合测试及编写脚本(六)
查看>>
游侠原创:层层揭开WEB安全问题
查看>>
Majority Element
查看>>
defaultServlet与Filter过滤器
查看>>
JVM层GC调优(下)
查看>>
思科本周发布一季财报:利润或继续下滑
查看>>
如何成为一位「不那么差」的程序员
查看>>
三个小命令 检查电脑是否被安装***
查看>>
打包时出现 Conversion to Dalvik format failed with error 1
查看>>