Memeriksa Variabel Sistem di Password Validation Plugin mySQL

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]

About Reza Ervani 425 Articles
Adalah pendiri programming.rezaervani.com -

Be the first to comment

Leave a Reply

Your email address will not be published.


*


This site uses Akismet to reduce spam. Learn how your comment data is processed.