MySQL 8.0.19 supports locking an account after entering an incorrect password three times (example)

MySQL 8.0.19 supports locking an account after entering an incorrect password three times (example)

MySQL 8.0.19 supports locking the account after entering the wrong password three times

example:

>CREATE USER 'hechunyang'@'localhost' IDENTIFIED BY '123456' FAILED_LOGIN_ATTEMPTS 3 PASSWORD_LOCK_TIME 3;

FAILED_LOGIN_ATTEMPTS: represents the number of failed attempts

PASSWORD_LOCK_TIME: represents the lock time, in days. Here it is locked for 3 days.

If UNBOUNDED is set, it means the lock is permanent until manually unlocked.

If you intentionally enter the wrong password more than 3 times, your account will be locked as shown below:

# mysql -hlocalhost -uhechunyang -p123456789 -S /tmp/mysql_hcy.sock
mysql: [Warning] Using a password on the command line interface can be insecure.
ERROR 3955 (HY000): Access denied for user 'hechunyang'@'localhost'.
Account is blocked for 3 day(s) (3 day(s) remaining) due to 3 consecutive failed logins.

ps: Let's take a look at the mysql 8.0.19 update unable to log in problem

cd /usr/local//mysql/bin
mysqld --initialize --console

Don't panic when reporting errors

/usr/local/var/mysql 刪除里面的文件

Initial setup here

mysqld --initialize --console

You will get a temporary password

mysql -uroot -p Change password after login

alter user 'root'@'localhost' identified by '123456';

Summarize

The above is the editor's introduction to the MySQL 8.0.19 support for locking the account after entering the wrong password three times. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Will Update in a Mysql transaction lock the table?
  • Analysis of the locking mechanism of MySQL database
  • Detailed explanation of mysql deadlock checking and deadlock removal examples
  • The normal method of MySQL deadlock check processing
  • How to query whether the mysql table is locked
  • Determine whether MySQL update will lock the table through examples
  • Pessimistic locking and optimistic locking in MySQL
  • Detailed explanation of the meaning and difference between MySQL row locks and table locks
  • Understanding and application analysis of mysql pessimistic locking and optimistic locking
  • Summary of MySQL lock related knowledge

<<:  Detailed explanation of Docker cross-host container communication overlay implementation process

>>:  An article teaches you how to use js to achieve the barrage effect

Recommend

Several ways to store images in MySQL database

Usually the pictures uploaded by users need to be...

How to use & and nohup in the background of Linux

When we work in a terminal or console, we may not...

MYSQL Operator Summary

Table of contents 1. Arithmetic operators 2. Comp...

Solution to Incorrect string value in MySQL

Many friends will report the following error when...

How to set the style of ordered and unordered list items in CSS

In an unordered list ul>li, the symbol of an u...

How to use mysqladmin to get the current TPS and QPS of a MySQL instance

mysqladmin is an official mysql client program th...

How to implement gzip compression in nginx to improve website speed

Table of contents Why use gzip compression? nginx...

Solution to changing the data storage location of the database in MySQL 5.7

As the data stored in the MySQL database graduall...

Method of Vue component document generation tool library

Table of contents Parsing .vue files Extract docu...

js to realize the function of uploading pictures

The principle of uploading pictures on the front ...

Linux swap partition (detailed explanation)

Table of contents linux 1. What is SWAP 2. What d...

Vue3.0 handwriting magnifying glass effect

The effect to be achieved is: fixed zoom in twice...

Detailed explanation of screen command usage in Linux

GUN Screen: Official website: http://www.gnu.org/...

Quickly solve the problem of slow Tomcat startup, super simple

Today I helped a classmate solve a problem - Tomc...