Your password does not satisfy the current policy requirements

When I tried to create new MySQL account, MySQL raised the following error.

Your password does not satisfy the current policy requirements

So, I updated the policy requirements as follow.

mysql> SET GLOBAL validate_password_policy=LOW;
Query OK, 0 rows affected (0.01 sec)

mysql> SET GLOBAL validate_password_length=6;
Query OK, 0 rows affected (0.00 sec)

mysql> SHOW VARIABLES LIKE 'validate_password%';
+--------------------------------------+-------+
| Variable_name                        | Value |
+--------------------------------------+-------+
| validate_password_check_user_name    | OFF   |
| validate_password_dictionary_file    |       |
| validate_password_length             | 6     |
| validate_password_mixed_case_count   | 1     |
| validate_password_number_count       | 1     |
| validate_password_policy             | LOW   |
| validate_password_special_char_count | 1     |
+--------------------------------------+-------+
7 rows in set (0.00 sec)

Reference sites