美文网首页
Percona XtraDB Cluster(PXC) 无法正常

Percona XtraDB Cluster(PXC) 无法正常

作者: 负二贷 | 来源:发表于2018-02-03 13:07 被阅读0次

    今天重启pxc全部服务器的时候无法启动查看日志的报错如下:

    2018-02-03 09:05:50 3913 [ERROR] WSREP: It may not be safe to bootstrap the cluster from this node. It was not the last one to leave the cluster and may not contain all the updates. 
    To force cluster bootstrap with this node, edit the grastate.dat file manually and set safe_to_bootstrap to 1 .
    

    根据提示去修改首先找到 grastate.dat文件,第一次的修改不知道在哪只能运行find命令去找,从根目录找:

    cd /
    find .  -name 'grastate.dat'
    

    结果文件在/var/lib/mysql/grastate.dat目录下你拷贝这个即可

    然后执行vi 命令:

    vi  /var/lib/mysql/grastate.dat 
    

    修改safe_to_bootstrap 值 当前文件为0 改为1
    结构如下:

    # GALERA saved state
    version: 2.1
    uuid:    002bd039-c2c8-11e7-82c7-36d79987c3c9
    seqno:   -1
    safe_to_bootstrap: 1
    

    然后执行命令/etc/init.d/mysql bootstrap-pxc 就可以启动
    但是当启动完成后
    safe_to_bootstrap 会改为0 我猜测可能是某些不正常情况下重启的时候safe_to_bootstrap没有从0改为1导致无法启动的,下次大家遇到同样的问题修改即可。

    相关文章

      网友评论

          本文标题:Percona XtraDB Cluster(PXC) 无法正常

          本文链接:https://www.haomeiwen.com/subject/hbluzxtx.html