I already covered some information related to users password recently (see this post and this one).
Today, let’s have a look at the password management features available in MySQL 8.0.
We will cover the password management in MySQL in 5 sections:
- validation
- expiration
- reuse policy
- verification policy
- dual active passwords
Validation
Password validation means that a new password must comply with
some policy to be sure the password is not weak. This job is
handled by a component in MySQL 8.0:
validate_password
.
To be able to use that component, you need to install it. You can verify if it’s …
[Read more]