Created
December 29, 2017 08:09
-
-
Save h4n2k/e922ae11c55cab30e710c07114beacf8 to your computer and use it in GitHub Desktop.
upgrade from mongodb 3.4 to 3.6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| db.adminCommand( { getParameter: 1, featureCompatibilityVersion: 1 } ) | |
| db.adminCommand( { setFeatureCompatibilityVersion: "3.4" } ) | |
| upgrade to mongodb 3.6 | |
| db.adminCommand( { getParameter: 1, featureCompatibilityVersion: 1 } ) | |
| db.adminCommand( { setFeatureCompatibilityVersion: "3.6" } ) |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://docs.mongodb.com/manual/release-notes/3.6/#upgrade-procedures
https://docs.mongodb.com/manual/release-notes/3.6-upgrade-standalone/