Mysql 5.7 中如何禁用 密码检测插件(validate password plugin)

安装了5.7的msyql之后,在为 root 用户修改密码 或者 新增用户时,都会碰到一个问题,就是密码的强度不够。这是因为,5.7版本中,默认安装了一个叫 validate password plugin 的插件,它会要求:

MySQL's validate_password plugin is installed by default. This will require that passwords contain at least one upper case letter, one lower case letter, one digit, and one special character, and that the total password length is at least 8 characters

如果想关闭这个插件的话,只需要在 /etc/my.conf 中 的 [mysqld] 中增加如下的配置:

validate_password=OFF

关于这个插件的详细说明,请查看 Mysql 的官方文档

你可能感兴趣的:(Mysql,db)