1. How to monitor MySQL deadlocks in production environments and how to reduce the probability of deadlocks First of all, deadlock is not "locked". Deadlock is caused by two or more session locks waiting for a loop. 1. Deadlock monitoring and handling methods For deadlock monitoring, each version provides the innodb_print_all_deadlocks option. Turning on this option will output the deadlock log to the MySQL error log. Therefore, the purpose of monitoring deadlocks can be achieved by monitoring the error log. It is even simpler for MariaDB. MariaDB provides the Innodb_deadlocks counter, which can be used to monitor the growth of the counter to detect deadlocks. 2. How to reduce the probability of deadlock 1. Try to use short transactions and avoid large transactions 2. What are the excellent features of MongoDB and what are the suitable scenarios 1. Excellent characteristics 1. Practicality: JSON-like rich document data model, naturally friendly to developers (II) Suitable scenarios 1. No multi-document transactions and multi-table association query requirements 3. What are the advantages of GO language compared with other programming languages? How to make choices in the actual production environment? 1. Natural support for high concurrency, strong consistent language, high development efficiency and stable and secure online operation In the actual production environment, it is recommended to consider the following aspects: 1. Looking at the business scenario, e-commerce and big data processing have ready-made solutions, which are not suitable for use. In addition, mathematical operations that are CPU-intensive are not needed. 4. A large transaction with many updates has now been rolled back, but I am in a hurry to shut down and restart. What should I do? 1. First, try to avoid executing large transactions in MySQL, because large transactions will cause problems such as master-slave replication delays. PS, kill -9 is a high-risk operation, which may cause unpredictable problems such as MySQL failure to start, so use it with caution. 5. How to reduce the impact of incorrect or no WHERE conditions during UPDATE/DELETE 1. Try not to manually execute any SQL commands online, as it is easy to make mistakes. It is best to have a second person to help confirm when executing SQL commands directly online 6. How does MySQL control the number of attempts when a user enters an incorrect password? 1. Plug-in assistance Starting from the official MySQL 5.7.17, the CONNECTION_CONTROL and CONNECTION_CONTROL_FAILED_LOGIN_ATTEMPTS plug-ins are provided, which in turn provide three parameters: connection_control_failed_connections_threshold, connection_control_min_connection_delay, and connection_control_max_connection_delay. 1. connection_control_failed_connections_threshold The meaning of this parameter is to control the number of login failures before delaying login. 2. connectioncontrolminconnectiondelay This parameter indicates the minimum delay time for each reconnection after the number of failures exceeds the limit. The delay calculation formula is (current total number of failures - failure threshold) connectioncontrolminconnection_delay. Therefore, the more error attempts, the longer the delay time. 3. connection_control_max_connection_delay The maximum delay time, after which the client can reconnect 4. After installing the plug-in, you can monitor the Connection_control_delay_generated status value and the table under INFORMATION_SCHEMA CONNECTION_CONTROL_FAILED_LOGIN_ATTEMPTS to monitor the number of failed login attempts 2. Error log monitoring By scanning the MySQL error log regularly to capture the number of account and password errors, when a certain threshold is reached, the corresponding host IP can be blocked in the system firewall to achieve the purpose of blocking the account (the specific operation depends on the situation) (III) Other instructions 1. Some students mistakenly believe that max_connection_errors can control the number of attempts with incorrect passwords. In fact, this parameter can only prevent port detection such as telnet, that is, record the number of protocol handshake errors. 2. Finally, in the production environment, you must pay attention to the status of aborted_clients and aborted_connects, and pay attention to any exceptions in time. Summarize The above is what I introduced to you about MySQL controlling the number of attempts when a user enters an incorrect password. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: JavaScript anti-shake case study
>>: How to purchase and install Alibaba Cloud servers
When inserting a set of data into the MySQL datab...
Table of contents animate() animation method Anim...
As we all know, SSH is currently the most reliabl...
Find the problem Recently, I encountered a proble...
Requirements: Remove HTTP response headers in IIS...
1. First register your own dockerhub account, reg...
Table of contents Batch copy copyWithin() Fill ar...
This is to commemorate the 4 pitfalls I stepped o...
Large Text Data Types in Oracle Clob long text ty...
Table of contents 1. typeof 2. instanceof 3. Cons...
Most of the commands below need to be entered in ...
This article example shares the specific code of ...
method: By desc: Neither can be achieved: Method ...
Sublime Sublime Text is a code editor (Sublime Te...
Many web pages have small triangles in their navi...