mirror of
https://github.com/MariaDB/server.git
synced 2025-07-18 23:03:28 +03:00
18 lines
656 B
Plaintext
18 lines
656 B
Plaintext
include/master-slave.inc
|
|
[connection master]
|
|
connection slave;
|
|
install soname "simple_password_check";
|
|
select @@strict_password_validation;
|
|
@@strict_password_validation
|
|
1
|
|
connection master;
|
|
create user foo1 identified by password '11111111111111111111111111111111111111111';
|
|
set password for foo1 = PASSWORD('PLAINtext-password!!99');
|
|
drop user foo1;
|
|
connection slave;
|
|
connection slave;
|
|
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
|