Just because this pops up first when searching for the Error

Failed to start WiredTiger after system upgrade

In our case we had mongo-4.2.8 running and wanted to upgrade to mongo-4.4.4 which should work just fine, but the featureCompatibilityVersion was still set to “4.0” instead of “4.2” so the upgrade did not succeed.

You can solve this easily with:

  • downgrade to 4.2.8 (in our case) again
  • Follow the migration steps to set the featureCompatibilityVersion to 4.2
  • Shut down your database (or replica set) cleanly as stated in the migration guide
  • Upgrade the binary to 4.4.4 (in our case)
  • Everything should start correctly. Now you set the featureCompatibilityVersion to 4.4 for future upgrades.
3 Likes