MYSQL 5.6 Deployment and monitoring of slave replication

MYSQL 5.6 Deployment and monitoring of slave replication

MYSQL 5.6 Deployment and monitoring of slave replication

MYSQL 5.6 Installation and Deployment

#1. Download the installation package wget https://download.osichina.net/tools/mysql/mysql-5.6.28.tar.gz   
   
#2. Create users and install related components useradd mysql   
yum -y install autoconf automake cmake gcc-c++ libgcrypt libtool libxml2 ncurses-devel zlib   
   
#3. Unzip and compile and install (installation path: /usr/local/mysql)   
tar -xzvf mysql-5.6.28.tar.gz   
cd mysql-5.6.28   
cmake -DCMAKE_INSTALL_PREFIX=/usr/local/mysql -DDEFAULT_CHARSET=utf8 -DDEFAULT_COLLATION=utf8_general_ci -DENABLED_LOCAL_INFILE=1 -DMYSQL_DATADIR=/data/mysql/data -DSYSCONFDIR=/etc -DWITH_PARTITION_STORAGE_ENGINE=1   
make && make install   
   
#4. Add environment variables echo 'export PATH=/usr/local/mysql/bin:$PATH' >> /etc/profile   
   
#5. MYSQL configuration cat > /etc/my.cnf << EOF   
[mysqld_safe]   
log-error=/data/mysql/log/mysql.err   
   
[mysqld]   
datadir=/data/mysql/data   
tmpdir=/data/mysql/tmp   
socket=/var/lib/mysql/mysql.sock   
user=mysql   
character_set_server=utf8   
default-storage-engine=INNODB   
innodb_buffer_pool_size=1G   
#slow_query_log=1   
#slow_query_log_file=/data/mysql/log/mysql.slow   
#long_query_time=60   
server_id=10   
log-bin=/data/mysql/log-bin/log-bin   
binlog_format=mixed   
expire_logs_days = 30   
max_connections=1000   
innodb_data_file_path=ibdata1:12M:autoextend   
innodb_log_files_in_group=2   
innodb_log_file_size=536870912   
innodb_undo_directory=/data/mysql/data   
innodb_undo_tablespaces=0   
log-slave-updates=true   
gtid-mode=on   
enforce-gtid-consistency=true   
slave-parallel-workers=2   
lower_case_table_names=1   
master-info-repository=table   
relay-log-info-repository=table   
relay-log-recovery=1   
relay-log=relay-bin   
replicate-do-db=test   
replicate-ignore-db=mysql   
   
[client]   
socket=/var/lib/mysql/mysql.sock   
EOF   
   
#6. Create related directories and files mdkir -p /data/mysql/data /data/mysql/log /data/mysql/log-bin /data/mysql/tmp /var/lib/mysql   
touch /data/mysql/log/mysql.err   
chown mysql:mysql /data/mysql /var/lib/mysql /usr/local/mysql -R   
   
#7. Initialize configuration cd /usr/local/mysql   
./scripts/mysql_install_db --user=mysql --datadir=/data/mysql/data   
   
#8. Start, add as service and configure security cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysqld   
chmod +x /etc/init.d/mysqld   
chkconfig --add mysqld   
chkconfig mysqld on   
service mysqld restart   
   
ln -s /var/lib/mysql/mysql.sock /tmp/mysql.sock   
mysql_secure_installation #Interactive security configuration

MYSQL master-slave configuration

1. Create an account in the main database

GRANT REPLICATION SLAVE ON *.* to 'user'@'%' identified by 'password';   
flush privileges;

2. Back up data and restore to the slave database

In order to ensure data consistency, the table needs to be locked. If the amount of data is relatively small, first lock the table, then record the POS position of the master, and then use mysqldump to back it up. If the amount of data is large, you can use mydumper or xtrabackup to back up the data. The amount of data here is relatively large, so I use mydumper for backup.
#1. Download and install mydumper (the default installation location is: /usr/local/bin)   
wget https://download.osichina.net/tools/mysql/mydumper-0.9.1.tar.gz   
cmake .   
make && make install   
   
#2. Use multi-threaded backup data#In order to ensure data consistency, the backup will lock the table, which means that the backup account needs reload permission#-h host-u user-p password-t number of threads-c enable compression-B which database to backup-o where to backup mkdir backup   
cd backup   
nohup /usr/local/bin/mydumper -h xxxx -u user -p 'password' -t 8 -c -B dbname -o ./ &   
   
#3. Import after backing up the data (after transferring the data to the slave library and importing it, you need to install the same version of mydumper in the slave library)   
nohup /usr/local/bin/myloader -u user -p 'password' -t 8 -B dbname -o -d ./backup/ &

3. Master-slave configuration

(1) Master configuration

(1) Master configuration# Which databases are not synchronized binlog-ignore-db = mysql   
binlog-ignore-db = test   
binlog-ignore-db = information_schema   
   
# Only synchronize certain databases. Other databases will not be synchronized. binlog-do-db = dbname   
   
# Log retention time expire_logs_days = 10   
   
# Control the writing frequency of binlog. How many times should the transaction be written every time it is executed? # This parameter consumes a lot of performance, but it can reduce the loss caused by MySQL crashes. sync_binlog = 5   
   
# Log format, mixed is recommended   
# statement saves SQL statements # row saves affected record data # mixed is a combination of the previous two binlog_format = mixed   

(2) Slave configuration
The slave is configured as above when installed. Note the configuration of replicate-do-db and replicate-ignore-db.

(3) Execution synchronization
For master log file and POS, refer to the mydumper metadata file

CHANGE MASTER TO MASTER_HOST='xxxx',master_port=3306,MASTER_LOG_FILE='mysql-bin.000001',MASTER_LOG_POS=123454678,MASTER_AUTO_POSITION=0;   
start slave user='user' password='password';   
show slave status \G;

MYSQL delay monitoring and alarm

1. Use zabbix to add MYSQL monitoring

(1) Zabbix client installation and deployment and host addition

zabbixServer=192.168.1.2   
rpm -Uvh https://repo.zabbix.com/zabbix/4.4/rhel/7/x86_64/zabbix-release-4.4-1.el7.noarch.rpm   
yum -y install zabbix-agent   
sed -i "s/Server=127.0.0.1/Server=${zabbixServer}/g" /etc/zabbix/zabbix_agentd.conf   
sed -i "s/ServerActive=127.0.0.1/ServerActive=${zabbixServer}/g" /etc/zabbix/zabbix_agentd.conf   
sed -i "s/Hostname=Zabbix server/Hostname=`hostname`/g" /etc/zabbix/zabbix_agentd.conf   
systemctl enable zabbix-agent --now

How to add a host on zabbix is ​​omitted here. (The operating system version of the zabbix client installed above is: centos7.6)
The default zabbix configuration file directory installed by yum is: /etc/zabbix/, and by default there is an associated MYSQL configuration file /etc/zabbix/zabbix_agentd.d/userparameter_mysql.conf

(2) Add zabbix monitoring authorization

GRANT USAGE,REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW on *.* to zabbix_monitor@'127.0.0.1' identified by 'xxxxxxx';   
GRANT USAGE,REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW on *.* to zabbix_monitor@'localhost' identified by 'xxxxxxx';   
flush privileges;

(3) Initialization configuration (executed on the mysql zabbix client)

mdkir -p /var/lib/zabbix   
cat > /var/lib/zabbix/.my.cnf << EOF   
[client]   
user=zbx_monitor   
password=xxxxxxx   
EOF   
chown zabbix:zabbix /var/lib/zabbix -R   
service zabbix-agent restart   
service zabbix-agent status

(4) Associate the MYSQL template on the zabbix web client to complete the monitoring

2. Use the existing MYSQL template of zabbix to add slave database delay monitoring

(1) Create a master-slave delay script

mkdir -p /etc/zabbix/scripts   
cat > /etc/zabbix/scripts/check_mysql_slave.sh << EOF   
#!/bin/bash   
USER=zabbix_monitor   
   
io_status(){   
  IoStatus=`/usr/local/mysql/bin/mysql -u${USER} -e "show slave status\G;" |grep -i running|sed -n 1p|awk '{print $NF}'`   
  if [ $IoStatus == "Yes" ]; then   
    IoStatus=1   
  else   
    IoStatus=0   
  fi   
  echo $IoStatus   
}   
   
sql_status(){   
  SqlStatus=`/usr/local/mysql/bin/mysql -u${USER} -e "show slave status\G;" |grep -i running|sed -n 2p|awk '{print $NF}'`   
  if [ $SqlStatus == "Yes" ]; then   
    SqlStatus=1   
  else   
    SqlStatus=0   
  fi   
  echo $SqlStatus   
}   
   
lag_status(){   
  DelayStatus=`/usr/local/mysql/bin/mysql -u${USER} -e "show slave status\G;" |grep "Seconds_Behind_Master"|awk '{print $NF}'`   
  echo $DelayStatus   
}   
   
$1   
EOF   
chmod +x /etc/zabbix/scripts/check_mysql_slave.sh

(2) Reading account information from the default configuration file If you directly use the account and password to execute commands in the script, an unsafe prompt will be generated

cat >> /etc/my.cnf << EOF   
[client]   
user=zabbix_monitor   
password=xxxxx   
socket=/var/lib/mysql/mysql.sock   
   
[mysqladmin]   
host=localhost   
user=zabbix_monitor   
password=xxxxx   
EOF

(3) Is the test script normal?

/etc/zabbix/scripts/check_mysql_slave.sh io_status   
/etc/zabbix/scripts/check_mysql_slave.sh sql_status   
/etc/zabbix/scripts/check_mysql_slave.sh lag_status

io_status: 1 means normal, 0 means abnormal
sql_status: 1 means normal, 0 means abnormal
lag_status: indicates the delay time

(4) Add user parameter configuration (client)

/etc/zabbix/scripts/check_mysql_slave.sh io_status   
/etc/zabbix/scripts/check_mysql_slave.sh sql_status   
/etc/zabbix/scripts/check_mysql_slave.sh lag_status

(5) Restart the zabbix client and then verify on the server

service zabbix-agent restart   
service zabbix-agent status   
zabbix_get -s xxxx -p 10050 -k mysql.slave[io_status]   
zabbix_get -s xxxx -p 10050 -k mysql.slave[sql_status]   
zabbix_get -s xxxx -p 10050 -k mysql.slave[lag_status]

(6) After cloning the original MYSQL template on zabbix web, add monitoring items, triggers and graphics








(7) Associate the new MYSQL slave monitoring template on the host

Some additional knowledge points

1. Control of replicate-do-db

In MySQL 5.5/5.6, since replication filter parameters can only be modified in my.cnf, the database needs to be restarted;
In the latest version 5.7, the following three steps can take effect without restarting the server:

STOP SLAVE SQL_THREAD;   
CHANGE REPLICATION FILTER REPLICATE_DO_DB = (dbname),REPLICATE_IGNORE_DB = (mysql);   
START SLAVE SQL_THREAD;

2. Issues related to change Master

If you are copying the entire database, you do not need to specify the pos file and pos position.

CHANGE MASTER TO MASTER_HOST='xxxx',master_port=3306,MASTER_AUTO_POSITION=1;   
start slave user='user' password='password';

If you are copying part of the database or the POS position on the master cannot be found. Please specify the pos position manually

3. Installation and deployment of mydumper and related issues

When installing mydumper, if a glib error occurs, please install the glib library yum install glib2* -y
After the installation is complete, please delete the unzipped files, unzip them again, and compile and install them

4. The problem of insecure user and password prompts from the database

By default, if you specify a user and password in the change master, the account information will be passed to the master, which is unsafe. The latest synchronization syntax recommends that you specify the account information in the start slave instead of in the change master.

5. Crash problem prompted from the library

For crash safety considerations, the master and relaylog need to be stored in a table. If they are not stored in the table, a warning will appear in the mysql log.

#Master information is stored in the table master_info_repository = TABLE   
#Relaylog information is stored in the table relay_log_info_repository = TABLE

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Summary of the benefits of deploying MySQL delayed slaves
  • Detailed explanation of the code between the MySQL master library binlog (master-log) and the slave library relay-log
  • Add slaves in two ways - without stopping MySQL service
  • A case study on troubleshooting slave database delays in MySQL
  • Step by step analysis of the reasons why MySQL slave com_insert has no changes
  • The shell uses mysqld_multi to automatically create multiple instance slave library scripts
  • Solution to the problem of MySQL master-slave database being out of sync
  • A solution to the MYSQL master-slave out-of-sync problem

<<:  JavaScript implements the nine-grid click color change effect

>>:  Automatically build and deploy using Docker+Jenkins

Recommend

JavaScript function detailed introduction

Any number of statements can be encapsulated thro...

Vue custom component implements two-way binding

Scenario: The interaction methods between parent ...

Nginx rush purchase current limiting configuration implementation analysis

Due to business needs, there are often rush purch...

Vue implements dynamic routing details

Table of contents 1. Front-end control 1. In the ...

Conditional comment style writing method and sample code

As front-end engineers, IE must be familiar to us...

Vue uses canvas to realize image compression upload

This article shares the specific code of Vue usin...

Summary of the application of transition components in Vue projects

​Transtion in vue is an animation transition enca...

Basic introductory tutorial on MySQL partition tables

Preface In a recent project, we need to save a la...

Implementation of react automatic construction routing

Table of contents sequence 1. Centralized routing...

Simple steps to encapsulate components in Vue projects

Table of contents Preface How to encapsulate a To...

Vue recursively implements custom tree components

This article shares the specific code of Vue recu...

Vue implements image dragging and sorting

This article example shares the specific code of ...

Detailed explanation of Nginx process management and reloading principles

Process structure diagram Nginx is a multi-proces...

The rel attribute of the HTML link tag

The <link> tag defines the relationship bet...