mirror of
https://github.com/MariaDB/server.git
synced 2025-11-28 17:36:30 +03:00
14 lines
583 B
Plaintext
14 lines
583 B
Plaintext
include/master-slave.inc
|
|
[connection master]
|
|
install soname "simple_password_check";
|
|
select @@strict_password_validation;
|
|
@@strict_password_validation
|
|
1
|
|
create user foo1 identified by password '11111111111111111111111111111111111111111';
|
|
set password for foo1 = PASSWORD('PLAINtext-password!!99');
|
|
drop user foo1;
|
|
create user foo1 identified by password '11111111111111111111111111111111111111111';
|
|
ERROR HY000: The MariaDB server is running with the --strict-password-validation option so it cannot execute this statement
|
|
uninstall plugin simple_password_check;
|
|
include/rpl_end.inc
|