How do I turn off the mysql password validation?

后端 未结 13 1403
傲寒
傲寒 2021-01-29 17:34

It seems that I may have inadvertently loaded the password validation plugin in MySQL 5.7. This plugin seems to force all passwords to comply to certain rules.

I would l

13条回答
  •  半阙折子戏
    2021-01-29 18:05

    For mysql 8.0 the command to disable password validation component is:

    UNINSTALL COMPONENT 'file://component_validate_password';
    

    To install it back again, the command is:

    INSTALL COMPONENT 'file://component_validate_password';
    

    If you just want to change the policy of password validation plugin:

    SET GLOBAL validate_password.policy = 0;   // For LOW
    SET GLOBAL validate_password.policy = 1;   // For MEDIUM
    SET GLOBAL validate_password.policy = 2;   // For HIGH
    

提交回复
热议问题