
Oleh : Reza Ervani
بسم الله الرحمن الرحيم
Setelah Password Validation Plugin di MySQL terinstall kita dapat melihat variabel-variabel sistemnya dengan perintah :
[code language=”bash”]
mysql> SHOW VARIABLES LIKE ‘validate_password%’;
[/code]
Keluarannya tampak seperti berikut :
[code language=”bash”]
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)
[/code]
Leave a Reply