当前位置:网站首页>Your password does not satisfy the current policy requirements (modify MySQL password policy setting simple password)
Your password does not satisfy the current policy requirements (modify MySQL password policy setting simple password)
2022-07-27 16:15:00 【Carrot eating crocodile】
When modifying mysql Password error ERROR 1819 (HY000): Your password does not satisfy the current policy requirements

It means that your password has not reached mysql Password policy requirements
Check password policy :
SHOW VARIABLES LIKE 'validate_password%';

Reduce the strength of the password and set the length of the password to 6
set global validate_password_policy=LOW;
set global validate_password_length=6;

View the modified password policy 
At this point, you can set a simple password , Such as 123456
边栏推荐
- 编码技巧——全局异常捕获&统一的返回体&业务异常
- profileapi.h header
- 移动端h5常见问题
- leetcode25题:K 个一组翻转链表——链表困难题目详解
- Baidu picture copy picture address
- 快速高效删除node_modules
- Mapreduce实例(一):WordCount
- Chapter I Marxist philosophy is a scientific world outlook and methodology
- [sword finger offer] interview question 45: arrange the array into the smallest number
- 可载100人!马斯克发布史上最强“星际飞船” !最早明年上火星!
猜你喜欢
随机推荐
解决openwrt package目录下多个文件夹重名编译警告(call subdir 函数)
It can carry 100 people! Musk releases the strongest "starship" in history! Go to Mars as early as next year!
Introduction to JWT
Solve the compilation warning of multiple folders with duplicate names under the openwrt package directory (call subdir function)
实现浅拷贝和深拷贝+
Short video mall system, system prompt box, confirmation box, click blank to close the pop-up box
企业运维安全就用行云管家堡垒机!
Embedded development: tips and techniques -- seven techniques to meet the real-time deadline
[sword finger offer] interview question 52: the first common node of two linked lists - stack, hash table, double pointer
少见的按位操作符
[sword finger offer] interview question 53- Ⅱ: missing numbers in 0 ~ n-1 - binary search
Ncnn reasoning framework installation; Onnx to ncnn
Determine the exact type of data
Reduce program ROM ram, GCC -ffunction sections -fdata sections -wl, – detailed explanation of GC sections parameters
一款功能强大的Web漏洞扫描和验证工具(Vulmap)
微信小程序个人号开通流量主
vant-ui toast和dialog使用
渗透测试-干货 | 80篇+网络安全面试经验帖(面试篇)
centos yum方式安装mysql
Live broadcast software development, customized pop-up effect of tools









