
Oleh : Reza Ervani
بسم الله الرحمن الرحيم
Setelah Password Validation Plugin di MySQL terinstall kita dapat melihat variabel-variabel sistemnya dengan perintah :
1 | mysql> SHOW VARIABLES LIKE 'validate_password%' ; |
Keluarannya tampak seperti berikut :
01 02 03 04 05 06 07 08 09 10 11 12 | mysql> SHOW VARIABLES LIKE 'validate_password%' ; +--------------------------------------+--------+ | Variable_name | Value | +--------------------------------------+--------+ | validate_password_dictionary_file | | | validate_password_length | 8 | | validate_password_mixed_case_count | 1 | | validate_password_number_count | 1 | | validate_password_policy | STRONG | | validate_password_special_char_count | 1 | +--------------------------------------+--------+ 6 rows in set (0.00 sec) |
Leave a Reply