Have you checked if your password complies with the min requirements?
If you run this in MySQL server you should see the password requirements:
SHOW VARIABLES LIKE 'validate_password%';
But the default ones are:
Minimum length 8 characters
At least one uppercase letter.
At least one lowercase letter.
At least one numeric digit.
At least one special character.