OPTIONS

Migrate Config Servers with Different Hostnames

Important

This procedure applies to migrating config servers when using three mirrored mongod instances as config servers.

Changed in version 3.2: Starting in MongoDB 3.2, config servers can be deployed as replica set. MongoDB 3.2 deprecates the use of three mirrored mongod instances for config servers.

For replacing config servers deployed as members of a replica set, see Replace a Config Server.

Overview

For a sharded cluster that uses three mirrored config servers, all three config servers must be available in order to support operations that result in cluster metadata changes, e.g. chunk splits and migrations. If one of the config servers is unavailable or inoperable, you must replace it as soon as possible.

For a sharded cluster that uses three mirrored config servers, this procedure migrates a config server to a new server that uses a different hostname. Use this procedure only if the config server will not be accessible via the same hostname. If possible, avoid changing the hostname so that you can instead use the procedure to migrate a config server and use the same hostname.

Considerations

With three mirrored config servers, changing a config server’s hostname requires downtime and requires restarting every process in the sharded cluster.

While migrating config servers, always make sure that all mongos instances have three config servers specified in the configDB setting at all times. Also ensure that you specify the config servers in the same order for each mongos instance’s configDB setting.

Procedure

Important

This procedure applies to migrating config servers when using three mirrored mongod instances as config servers. For replacing config servers deployed as members of a replica set, see Replace a Config Server.

  1. Disable the cluster balancer process temporarily. See Disable the Balancer for more information.

  2. Shut down the config server to migrate.

    This renders all config data for the sharded cluster “read only.”

  3. Copy the contents of dbPath from the old config server to the new config server. For example, to copy the contents of dbPath to a machine named mongodb.config2.example.net, use a command that resembles the following:

    rsync -az /data/configdb mongodb.config2.example.net:/data/configdb
    
  4. Start the config server instance on the new system. The default invocation is:

    mongod --configsvr
    
  5. Shut down all existing MongoDB processes. This includes:

  6. Restart all shard mongod instances.

  7. Restart the mongod instances for the two existing non-migrated config servers.

  8. Update the configDB setting for each mongos instances.

  9. Restart the mongos instances.

  10. Re-enable the balancer to allow the cluster to resume normal balancing operations. See the Disable the Balancer section for more information on managing the balancer process.