溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

MongoDB中怎么修復config配置節(jié)點

發(fā)布時間:2021-07-16 16:45:43 來源:億速云 閱讀:150 作者:Leah 欄目:關(guān)系型數(shù)據(jù)庫

這期內(nèi)容當中小編將會給大家?guī)碛嘘P(guān)MongoDB中怎么修復config配置節(jié)點,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

修復流程如下:

  1. # 登錄到config庫,查看config的節(jié)點狀態(tài)

  2. # 可以看到_id為2的節(jié)點狀態(tài)是不可訪問的


  3. [root@mongos-mq ~]# /opt/mongodb-linux-x86_64-3.2.10/bin/mongo --port 10000
    MongoDB shell version: 3.2.10
    connecting to: 127.0.0.1:10000/test
    config_rs:PRIMARY> use admin
    switched to db admin
    config_rs:PRIMARY> db.auth("root", "xxx")
    1
    config_rs:PRIMARY> rs.status()
    {
        "set" : "config_rs",
        "date" : ISODate("2018-05-30T04:53:21.081Z"),
        "myState" : 1,
        "term" : NumberLong(1),
        "configsvr" : true,
        "heartbeatIntervalMillis" : NumberLong(2000),
        "members" : [
            {
                "_id" : 0,
                "name" : "192.168.210.208:10000",
                "health" : 1,
                "state" : 1,
                "stateStr" : "PRIMARY",
                "uptime" : 1112804,
                "optime" : {
                    "ts" : Timestamp(1527656000, 1),
                    "t" : NumberLong(1)
                },
                "optimeDate" : ISODate("2018-05-30T04:53:20Z"),
                "electionTime" : Timestamp(1526543249, 2),
                "electionDate" : ISODate("2018-05-17T07:47:29Z"),
                "configVersion" : 3,
                "self" : true
            },
            {
                "_id" : 1,
                "name" : "192.168.210.209:10000",
                "health" : 1,
                "state" : 2,
                "stateStr" : "SECONDARY",
                "uptime" : 1111358,
                "optime" : {
                    "ts" : Timestamp(1527656000, 1),
                    "t" : NumberLong(1)
                },
                "optimeDate" : ISODate("2018-05-30T04:53:20Z"),
                "lastHeartbeat" : ISODate("2018-05-30T04:53:20.836Z"),
                "lastHeartbeatRecv" : ISODate("2018-05-30T04:53:19.329Z"),
                "pingMs" : NumberLong(0),
                "syncingTo" : "192.168.210.208:10000",
                "configVersion" : 3
            },
            {
                "_id" : 2,
                "name" : "192.168.210.207:10000",
                "health" : 0,
                "state" : 8,
                "stateStr" : "(not reachable/healthy)",
                "uptime" : 0,
                "optime" : {
                    "ts" : Timestamp(0, 0),
                    "t" : NumberLong(-1)
                },
                "optimeDate" : ISODate("1970-01-01T00:00:00Z"),
                "lastHeartbeat" : ISODate("2018-05-30T04:53:20.850Z"),
                "lastHeartbeatRecv" : ISODate("2018-05-26T09:07:27.318Z"),
                "pingMs" : NumberLong(0),
                "lastHeartbeatMessage" : "Connection refused",
                "configVersion" : -1
            }
        ],
        "ok" : 1
    }
    # 在故障節(jié)點上面重新安裝MongoDB,創(chuàng)建數(shù)據(jù)文件目錄
    [root@tomcat-207 opt]# tar xfz mongodb-linux-x86_64-3.2.10.tgz
    [root@tomcat-207 opt]# mkdir -p /data/mongodb_data/config_rs1_10000
    # 配置參數(shù)文件
    [root@tomcat-207 opt]# cat /etc/mongodb/config_rs1_10000.conf 
    systemLog:
        destination: file
        path: /data/mongodb_data/config_rs1_10000/mongod.log
    processManagement:
        fork: true
    net:
        bindIp: 0.0.0.0
        port: 10000
    security:
        keyFile: /data/mongodb_data/keyfile
    storage:
        dbPath: /data/mongodb_data/config_rs1_10000
        directoryPerDB: true
    operationProfiling:
        slowOpThresholdMs: 100
        mode: slowOp
    replication:
        replSetName: config_rs
    sharding:
        clusterRole: configsvr
    # 從其他config節(jié)點拷貝過來keyfile文件
    [root@mongos-mq opt]# scp /data/mongodb_data/keyfile root@192.168.210.207:/data/mongodb_data/
    # 啟動Mongo
    [root@mongos-mq opt]# /opt/mongodb-linux-x86_64-3.2.10/bin/mongod -f /etc/mongodb/config_rs1_10000.conf 
    about to fork child process, waiting until server is ready for connections.
    forked process: 3744
    child process started successfully, parent exiting
    # 查看config節(jié)點狀態(tài)
    # 所有的config節(jié)點都恢復正常
    config_rs:PRIMARY> rs.status()
    {
        "set" : "config_rs",
        "date" : ISODate("2018-05-30T05:29:40.103Z"),
        "myState" : 1,
        "term" : NumberLong(1),
        "configsvr" : true,
        "heartbeatIntervalMillis" : NumberLong(2000),
        "members" : [
            {
                "_id" : 0,
                "name" : "192.168.210.208:10000",
                "health" : 1,
                "state" : 1,
                "stateStr" : "PRIMARY",
                "uptime" : 1114983,
                "optime" : {
                    "ts" : Timestamp(1527658178, 4),
                    "t" : NumberLong(1)
                },
                "optimeDate" : ISODate("2018-05-30T05:29:38Z"),
                "electionTime" : Timestamp(1526543249, 2),
                "electionDate" : ISODate("2018-05-17T07:47:29Z"),
                "configVersion" : 3,
                "self" : true
            },
            {
                "_id" : 1,
                "name" : "192.168.210.209:10000",
                "health" : 1,
                "state" : 2,
                "stateStr" : "SECONDARY",
                "uptime" : 1113537,
                "optime" : {
                    "ts" : Timestamp(1527658178, 4),
                    "t" : NumberLong(1)
                },
                "optimeDate" : ISODate("2018-05-30T05:29:38Z"),
                "lastHeartbeat" : ISODate("2018-05-30T05:29:39.535Z"),
                "lastHeartbeatRecv" : ISODate("2018-05-30T05:29:39.941Z"),
                "pingMs" : NumberLong(0),
                "syncingTo" : "192.168.210.208:10000",
                "configVersion" : 3
            },
            {
                "_id" : 2,
                "name" : "192.168.210.207:10000",
                "health" : 1,
                "state" : 2,
                "stateStr" : "SECONDARY",
                "uptime" : 1588,
                "optime" : {
                    "ts" : Timestamp(1527658178, 4),
                    "t" : NumberLong(1)
                },
                "optimeDate" : ISODate("2018-05-30T05:29:38Z"),
                "lastHeartbeat" : ISODate("2018-05-30T05:29:39.535Z"),
                "lastHeartbeatRecv" : ISODate("2018-05-30T05:29:39.691Z"),
                "pingMs" : NumberLong(0),
                "syncingTo" : "192.168.210.209:10000",
                "configVersion" : 3
            }
        ],
        "ok" : 1
    }

上述就是小編為大家分享的MongoDB中怎么修復config配置節(jié)點了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI