Promote secondary to primary from secondary node

15,914

The mongodb website has documentation for what to do (in an emergency only) when you need to reconfigure a replica set when members are down. This sounds like the situation you are in.

Basically, if you're on version >= 2.0, and it's an emergency, you can add force: true to the replica set configuration command.

Share:
15,914
JB.
Author by

JB.

Software engineer

Updated on June 29, 2022

Comments

  • JB.
    JB. almost 2 years

    My test system (due to lack of resources) has a dual mongodb replicaset. There is no arbiter.

    During some system changes one of the servers got put out of action and will not be coming back. This server happened to host the primary mongo node. This left the only other member of the set as a secondary.

    I know I should have had at least three nodes for the cluster (our prod setup does).

    Is there a way I can make the primary that is now offline to step down? I haven't been able to change any of the rs.conf() settings because the only working node is secondary. starting an arbiter doesn't seem to work because I cannot add it to the replset as the primary is down.

    Has anyone encountered this before and managed to resolve it?

    To recap:

    SERVER A (PRIMARY) - OFFLINE

    SERVER B (SECONDARY) - ONLINE

    A + B = REPLSET

    Any help would be greatly appreciated.

  • JB.
    JB. about 12 years
    This solved my problem. I had tried the rs.reconfig() but I wasn't aware of the {force : true} parameter. Thank you.