千家信息网

判断GTID复制中主从是否同步脚本

发表于:2024-11-23 作者:千家信息网编辑
千家信息网最后更新 2024年11月23日,判断GTID复制中从库有没有与主库同步show slave stautus\G中:当Retrieved_Gtid_Set = Executed_Gtid_Set 表示从库已经和主库完成同步#!/bin
千家信息网最后更新 2024年11月23日判断GTID复制中主从是否同步脚本

判断GTID复制中从库有没有与主库同步

show slave stautus\G中:

当Retrieved_Gtid_Set = Executed_Gtid_Set 表示从库已经和主库完成同步

#!/bin/bashExec_num=$(mysql -uroot -p147258 -e "show slave status\G;" 2>/dev/null|grep 'Executed_Gtid_Set'| awk -F":" '{print $3}'|awk -F "-" '{ print $2}'|awk -F"," '{print $1}')Ret_num=$(mysql -uroot -p147258 -e "show slave status\G;" 2>/dev/null|grep 'Retrieved_Gtid_Set'| awk -F":" '{print $3}'|awk -F "-" '{print $2}')#判断这俩个数值是否相同,相等输出yes,否则noif [ $Exec_num -eq $Ret_num ]    then        echo "yes"    else       echo  "no"fi


0