Kill a bunch of MySQL databases with just a shell script like this (recommended)

Kill a bunch of MySQL databases with just a shell script like this (recommended)

I was woken up by a phone call early in the morning. The database of a certain project was down and could not be started (I slept too soundly and did not hear the alarm text message). I was very scared!

The person on the phone said that all MySQL database master databases could not be started, but the slave databases were normal. It was suspected that the master database was connecting to other Alibaba Cloud master databases. These databases were previously migrated from Alibaba Cloud to the IDC computer room, so he made this judgment.

Quickly turn on the computer, connect to ***, log in to one of the database servers, and try to execute the following command to start the mysql service

[root@bbsmysql121 backup]#mysqld_safe –user=mysql &

The startup failed, and I tried another database server, but it still failed. Considering that all databases cannot be started, it can be preliminarily determined that the problem may be caused by a problem with the database host.

The underlying design of the database is two physical nodes virtualized, plus one physical machine for backup. All virtual machines on one physical machine are used as MySQL master databases, and virtual machines on another physical machine are used as MySQL slave databases.

Give up troubleshooting in the virtual machine and quickly log in to the host system. Next, we will troubleshoot the problem from two aspects.

ü Virtualized backend management system

It was discovered that the storage was full and the problem was serious.

ü SSH login to the host system debian

[6885005.756183] Buffer I/O error on dev dm-16, logical block 34667776, lost async page write
[6885005.757292] Buffer I/O error on dev dm-16, logical block 34667792, lost async page write
[6885005.758210] Buffer I/O error on dev dm-16, logical block 34667808, lost async page write
[6885005.759079] Buffer I/O error on dev dm-16, logical block 34667824, lost async page write
[6885005.759922] Buffer I/O error on dev dm-16, logical block 34667840, lost async page write
[6885005.760723] Buffer I/O error on dev dm-16, logical block 34667856, lost async page write

The system log /var/log/messages found a large number of disk io errors.

Based on the above findings, it can be basically concluded that there is a problem with the disk: one problem is that the storage space allocated by proxmox is full, and the other is a disk io error. After knowing the problem, there are two solutions: fix the error or promote the slave database to the master database. Considering the standby issue, we should try our best to repair the master database. If it cannot be repaired, we can use the second solution (promote the slave database).

Free up disk space

Why does the disk space fill up? Someone must have done something on the virtual machine, and it may be that each virtual machine performed the same operation, which caused the host machine's disk space to fill up quickly. Log in to a virtual machine running MySQL database and execute the command

df-h

Logging into other servers, the partition /dev/sdb1 is also in use by more than 90%. Enter the directory /data and run the following command to view the directory space usage:

[root@cumysql121 data]# du -hs *
4.0K backup
59G db_pkg
59G mysql_db
[root@cumysql121 data]# cd backup
[root@cumysql121 backup]# du -hs *

Wow, there are several directories of more than 50G (I deleted them when writing this article and have no records left). Judging from the directory names, these files should be automatically generated by the backup database. Ignore it, delete it first.

Someone must have done an automatic task in the system. I checked it with the command crontab –l and found the following:

#!/bin/bash
/usr/local/xtrabackup/bin/innobackupex --defaults-file=/etc/my.cnf --user=root --passwor='+N4dohask+MsLhG' /data/backup/
find /data/backup/* -mtime +1 -exec rm -fr {} \;
~

At first glance, there is nothing wrong with this script. But if you look closely, you will find that there is a "~" symbol in the last line. There is something wrong! The intention of the person who wrote the script was to back up the database once a day and then delete the historical backup data from the previous day so as not to fill up the disk.

But there are two fatal problems, which are described here.

Backup strategy error

There is a dedicated backup system, and data should be backed up to this system instead of local backup.

Wrong means

After the backup script is written, it should be executed manually to verify its correctness. Instead of just throwing it there after writing it.

Repair disk errors

Contact the computer room urgently and ask the technicians to connect KVM over to the host machine. In case the system cannot be booted, you can view it remotely or enter single-user mode to perform repair operations such as fsck.

Use SSH to connect to the host system Debian, confirm that the full disk space is released, and then execute reboot to restart the system. After a few minutes, the system boots normally.

Subsequent Operations

Checking the system log, there is no disk io error, and the creation of directories and files is normal; starting each virtual machine and starting the database on it are all normal.

Notify all parties and check whether everything is normal from a business perspective. After a while, I received a bunch of recovery messages via text messages, and I felt much more at ease. Needless to say, it was the project's SA who did this and did not notify anyone.

Tell him privately and ask him to explain the matter to other people. If you do anything risky in the future, it’s best to inform each other.

The above is what I introduced to you. How to kill a bunch of MySQL databases with just such a shell script. 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:
  • Shell script to monitor MySQL master-slave status
  • How to install MySQL 5.7.29 with one click using shell script
  • MySQL common backup commands and shell backup scripts sharing
  • Shell script to backup MySQL database data regularly and retain it for a specified time
  • Shell script automates the creation of basic configuration of virtual machines: tomcat--mysql--jdk--maven
  • Shell script to implement mysql scheduled backup, deletion and recovery functions
  • A small Shell script to accurately count the number of rows in each Mysql table
  • Create MySQL database accounts on the server in batches through Shell scripts
  • How to add index to mysql using shell script
  • How to use shell scripts to automatically back up multiple MySQL databases every day
  • Introduction and installation of MySQL Shell

<<:  Vue implements seamless scrolling of lists

>>:  Detailed explanation of nginx installation, deployment and usage on Linux

Recommend

Tutorial on how to connect and use MySQL 8.0 in IDEA's Maven project

First, let's take a look at my basic developm...

Detailed explanation of Vue's custom event content distribution

1. This is a bit complicated to understand, I hop...

CSS3 realizes the effect of triangle continuous enlargement

1. CSS3 triangle continues to zoom in special eff...

Vue uses ECharts to implement line charts and pie charts

When developing a backend management project, it ...

CSS implements 0.5px lines to solve mobile compatibility issues (recommended)

【content】: 1. Use background-image gradient style...

Summary of HTML Hack Tags in IE Browser

Copy code The code is as follows: <!--[if !IE]...

How to achieve centered layout in CSS layout

1. Set the parent container to a table and the ch...

A brief discussion on JavaScript scope

Table of contents 1. Scope 1. Global scope 2. Loc...

How to use Docker to build a development environment (Windows and Mac)

Table of contents 1. Benefits of using Docker 2. ...

Troubleshooting the cause of 502 bad gateway error on nginx server

The server reports an error 502 when synchronizin...

MySQL tutorial thoroughly understands stored procedures

Table of contents 1. Concepts related to stored p...

Introduction to CSS style classification (basic knowledge)

Classification of CSS styles 1. Internal style --...

Do designers need to learn to code?

Often, after a web design is completed, the desig...