Navigation
This version of the documentation is archived and no longer supported.

Upgrade to the Latest Revision of MongoDB

MongoDB versioning have the form X.Y.Z where Z refers to the revision/patch number. Revisions provide security patches, bug fixes, and new or changed features that generally do not contain any backward breaking changes. Always upgrade to the latest revision in your release series.

For more information on versioning, see MongoDB Versioning.

Before Upgrading

Important

Starting in MongoDB 3.4.21, MongoDB 3.4-series removes support for Ubuntu 16.04 PPCLE.

  • Ensure you have an up-to-date backup of your data set. See MongoDB Backup Methods.
  • Consult the following documents for any special considerations or compatibility issues specific to your MongoDB release:
  • If your installation includes replica sets, plan the upgrade during a predefined maintenance window.
  • Before you upgrade a production environment, use the procedures in this document to upgrade a staging environment that reproduces your production environment, to ensure that your production configuration is compatible with all changes.

Upgrade Procedure

Important

Always backup all of your data before upgrading MongoDB.

Upgrade each mongod and mongos binary separately, using the procedure described here. When upgrading a binary, use the procedure Upgrade a MongoDB Instance.

Follow this upgrade procedure:

  1. For deployments that use authentication, first upgrade all of your MongoDB drivers. To upgrade, see the documentation for your driver as well as the Driver Compatibility page.
  2. Upgrade sharded clusters, as described in Upgrade Sharded Clusters.
  3. Upgrade any standalone instances. See Upgrade a MongoDB Instance.
  4. Upgrade any replica sets that are not part of a sharded cluster, as described in Upgrade Replica Sets.

Upgrade a MongoDB Instance

To upgrade a mongod or mongos instance, use one of the following approaches:

  • Upgrade the instance using the operating system’s package management tool and the official MongoDB packages. This is the preferred approach. See Install MongoDB.
  • Upgrade the instance by replacing the existing binaries with new binaries. See Replace the Existing Binaries.

Replace the Existing Binaries

Important

Always backup all of your data before upgrading MongoDB.

This section describes how to upgrade MongoDB by replacing the existing binaries. The preferred approach to an upgrade is to use the operating system’s package management tool and the official MongoDB packages, as described in Install MongoDB.

To upgrade a mongod or mongos instance by replacing the existing binaries:

  1. Download the binaries for the latest MongoDB revision from the MongoDB Download Page and store the binaries in a temporary location. The binaries download as compressed files that uncompress to the directory structure used by the MongoDB installation.
  2. Shutdown the instance.
  3. Replace the existing MongoDB binaries with the downloaded binaries.
  4. Restart the instance.

Upgrade Sharded Clusters

Changed in version 3.4: The procedure applies to 3.4. To make revision upgrades for other versions of MongoDB sharded clusters, refer to the appropriate version of the manual.

To upgrade a 3.4 sharded cluster:

  1. Disable the cluster’s balancer as described in Disable the Balancer.

  2. Upgrade the config servers.

    To upgrade the config server replica set, use the procedures in Upgrade Replica Sets.

  3. Upgrade each shard.

  4. Upgrade each mongos instance by following the instructions in Upgrade a MongoDB Instance. You can upgrade the mongos instances in any order.

  5. Re-enable the balancer, as described in Enable the Balancer.

Upgrade Replica Sets

To upgrade a replica set, upgrade each member individually, starting with the secondaries and finishing with the primary. Plan the upgrade during a predefined maintenance window.

Upgrade Secondaries

Upgrade each secondary separately as follows:

  1. Upgrade the secondary’s mongod binary by following the instructions in Upgrade a MongoDB Instance.

  2. After upgrading a secondary, wait for the secondary to recover to the SECONDARY state before upgrading the next instance. To check the member’s state, issue rs.status() in the mongo shell.

    The secondary may briefly go into STARTUP2 or RECOVERING. This is normal. Make sure to wait for the secondary to fully recover to SECONDARY before you continue the upgrade.

Upgrade the Primary

  1. Step down the primary to initiate the normal failover procedure. Using one of the following:

    During failover, the set cannot accept writes. Typically this takes 10-20 seconds. Plan the upgrade during a predefined maintenance window.

    Note

    Stepping down the primary is preferable to directly shutting down the primary. Stepping down expedites the failover procedure.

  2. Once the primary has stepped down, call the rs.status() method from the mongo shell until you see that another member has assumed the PRIMARY state.

  3. Shut down the original primary and upgrade its instance by following the instructions in Upgrade a MongoDB Instance.