Skip to content

Instantly share code, notes, and snippets.

@h4n2k
Created December 29, 2017 08:09
Show Gist options
  • Select an option

  • Save h4n2k/e922ae11c55cab30e710c07114beacf8 to your computer and use it in GitHub Desktop.

Select an option

Save h4n2k/e922ae11c55cab30e710c07114beacf8 to your computer and use it in GitHub Desktop.
upgrade from mongodb 3.4 to 3.6
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" } )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment