MySQL版本是5.7.17
操作系统是 CentOS 7
MySQL数据目录:/alidata1/mysql
在master及slave机器安装xtrabackup软件
- [ root @ iz2ze6jo3o3bqbcongnypqz innobackupex ] # rpm -ivh percona-xtrabackup-24-2 . 4 . 9-1 . el7 . x86_64 . rpm
- warning: percona-xtrabackup-24-2 . 4 . 9-1 . el7 . x86_64 . rpm: Header V4 DSA / SHA1 Signature , key ID cd2efd2a: NOKEY
- error: Failed dependencies:
- libev . so . 4 ( ) ( 64bit ) is needed by percona-xtrabackup-24-2 . 4 . 9-1 . el7 . x86_64
- perl ( DBD::mysql ) is needed by percona-xtrabackup-24-2 . 4 . 9-1 . el7 . x86_64
- perl ( Digest:: MD5 ) is needed by percona-xtrabackup-24-2 . 4 . 9-1 . el7 . x86_64
- rsync is needed by percona-xtrabackup-24-2 . 4 . 9-1 . el7 . x86_64
libev
.
so
.
4
(
)的解决
到下面这里下载操作系统对应的版本,本例下载的是libev-4.15-7.el7.x86_64.rpm
http://rpmfind.net/linux/rpm2html/search.php?query=libev.so.4%28%29%2864bit%29&submit=Search+...&system=&arch=
),需要安装mysql-community-libs-compat-5.7.17-1.el7.x86_64.rpm,在安装包里找到即可
在master机器操作1、在数据库创建备份账号
- CREATE USER xtrabk@'localhost' IDENTIFIED BY 'onlyxtrabk!@#$';
- GRANT RELOAD , LOCK TABLES , REPLICATION CLIENT , Process ON * . * TO xtrabk @ 'localhost' ;
- FLUSH PRIVILEGES ;
2、备份主库
innobackupex --defaults-file=/etc/my.cnf --user=xtrabk --password='onlyxtrabk!@#$'--parallel=4/alidata1/backup/full_mysql --no-timestamp
在slave机器操作
1、停止mysql,删除或者重命名Mysql数据目录
- systemctl stop mysqld . service
- rm -rf / alidata1 / mysql / data
- rm -rf / alidata1 / mysql / redolog
innobackupex --defaults-file=/etc/my.cnf --apply-log/alidata1/backup/full_mysql
- innobackupex --defaults-file
/
- etc
/
- my
.
- cnf --copy-back
/
- alidata1
/
- backup
/
- full_mysql
修改数据目录的宿主权限
chown -R mysql:mysql/alidata1/mysql
4、启动mysql
systemctl start mysqld.service5.过滤掉已执行过的gtid
- cat / alidata1 / backup / full_mysql / xtrabackup_info | grep binlog_pos
- [ root @ iz2ze6jo3o3bqbcongnyppz full_mysql ] # cat / alidata1 / backup / full_mysql / xtrabackup_info | grep binlog_pos
- binlog_pos = filename 'bin.000131' , position '615481029' , GTID of the last change 'c9c73c70-c089-11e7-8544-00163e0ad76e:1-107089934'
- mysql > show master status \G ;
- * * * * * * * * * * * * * * * * * * * * * * * * * * * 1 . row * * * * * * * * * * * * * * * * * * * * * * * * * * *
- File: bin . 000001
- Position : 154
- Binlog_Do_DB:
- Binlog_Ignore_DB:
- Executed_Gtid_Set: c9c73c70-c089-11e7-8544-00163e0ad76e:1-106016597
- 1 row in set ( 0 . 00 sec )
7.执行reset master
8.执行 GTID_PURGED
- SET @ MYSQLDUMP_TEMP_LOG_BIN = @ @ SESSION . SQL_LOG_BIN ;
- SET @ @ SESSION . SQL_LOG_BIN = 0 ;
- SET @ @ GLOBAL . GTID_PURGED = 'c9c73c70-c089-11e7-8544-00163e0ad76e:1-107089934' ;
- SET @ @ SESSION . SQL_LOG_BIN = @ MYSQLDUMP_TEMP_LOG_BIN ;
9.change master
注:本文内容来自互联网,旨在为开发者提供分享、交流的平台。如有涉及文章版权等事宜,请你联系站长进行处理。