Chocolatey Community Coffee Break

Join the Chocolatey Team on our regular monthly stream where we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Announcing Chocolatey Central Management 0.10.0

Livestream from
Thursday, 06 October 2022

We recently released our largest update to Chocolatey Central Management so far. Join Gary and Steph to find out more about Chocolatey Central Management and the new features and fixes we've added to this release.

Watch On-Demand
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand
Chocolatey Product Spotlight: Chocolatey 1.2.0 and Chocolatey Licensed Extension 5.0.0

Livestream from
Thursday, 03 November 2022

Join Paul and Gary for this months Chocolatey product livestream where we look at the latest release of Chocolatey 1.2.0, Chocolatey Licensed Extension 5.0.0 and shine a spotlight on the new hook scripts functionality. This opens up so many possibilities for Chocolatey CLI users!

Watch On-Demand
Chocolatey Coding Livestream

Livestream from
Tuesday, 29 November 2022

Join Josh as he adds the ability to manage Chocolatey GUI config and features with the Chocolatey Ansible Collection.

Watch On-Demand
Introduction into Chocolatey with Veeam

Webinar from
Tuesday, 13 December 2022

Join Gary, Paul, and Maurice as they introduce and demonstrate how to use Chocolatey! Questions will be answered live in an Ask Me Anything format.

Watch On-Demand

Downloads:

237,324

Downloads of v 6.3.0-rc2:

14

Last Update:

23 Mar 2023

Package Maintainer(s):

Software Author(s):

  • MongoDB Inc

Tags:

cli database nosql admin

MongoDB

This is a prerelease version of MongoDB.

  • 1
  • 2
  • 3

6.3.0-rc2 | Updated: 23 Mar 2023

Downloads:

237,324

Downloads of v 6.3.0-rc2:

14

Maintainer(s):

Software Author(s):

  • MongoDB Inc

MongoDB 6.3.0-rc2

This is a prerelease version of MongoDB.

  • 1
  • 2
  • 3

This Package Contains an Exempted Check

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Exemption:

MongoDB application is only supported on Windows 10/Windows 2016 or later. See https://docs.mongodb.com/manual/tutorial/install-mongodb-on-windows/#platform-support

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install MongoDB, run the following command from the command line or from PowerShell:

>

To upgrade MongoDB, run the following command from the command line or from PowerShell:

>

To uninstall MongoDB, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade mongodb -y --source="'INTERNAL REPO URL'" --prerelease [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade mongodb -y --source="'INTERNAL REPO URL'" --prerelease
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install mongodb
  win_chocolatey:
    name: mongodb
    version: '6.3.0-rc2'
    source: INTERNAL REPO URL
    state: present
    allow_prerelease: yes

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'mongodb' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '6.3.0-rc2'
  options  '--prerelease'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller mongodb
{
    Name        = "mongodb"
    Version     = "6.3.0-rc2"
    Source      = "INTERNAL REPO URL"
    chocoParams = "--prerelease"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'mongodb':
  ensure          => '6.3.0-rc2',
  install_options => ['--prerelease'],
  provider        => 'chocolatey',
  source          => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

This package is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.

  • Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
  • Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
  • Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.

Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.

Package Approved

This package was approved as a trusted package on 23 Mar 2023.

Description

MongoDB (from "humongous") is a scalable, high-performance, open source NoSQL database written in C++.

MongoDB stores data using a flexible document data model that is similar to JSON. Documents contain one or more fields, including arrays, binary data and sub-documents. Fields can vary from document to document. This flexibility allows development teams to evolve the data model rapidly as their application requirements change.

Developers access documents through rich, idiomatic drivers available in all popular programming languages. Documents map naturally to the objects in modern languages, which allows developers to be extremely productive. Typically, there’s no need for an ORM layer.

Package Parameters

The following package parameters can be set:

  • /dataPath: - where MongoDB stores its database files - defaults to "$env:ProgramData\MongoDB\data\db"
  • /logPath: - where MongoDB stores its logs - defaults to "$env:ProgramData\MongoDB\log"

To pass parameters, use --params "''" (e.g. choco install packageID [other options] --params="'/ITEM:value /ITEM2:value2 /FLAG_BOOLEAN'").
To have choco remember parameters on upgrade, be sure to set choco feature enable -n=useRememberedArgumentsForUpgrades.

Please Note: This is an automatically updated package. If you find it is
out of date by more than a day or two, please contact the maintainer(s) and
let them know the package is no longer updating correctly.


Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
MongoDB 6.3.0-rc2 14 Thursday, March 23, 2023 Approved
MongoDB 6.3.0-rc1 38 Wednesday, March 15, 2023 Approved
MongoDB 6.3.0-rc0 116 Wednesday, February 8, 2023 Approved
MongoDB 6.2.1-rc1 10 Saturday, February 18, 2023 Approved
MongoDB 6.2.1-rc0 6 Tuesday, February 14, 2023 Approved
MongoDB 6.2.0 2306 Friday, January 27, 2023 Approved
MongoDB 6.2.0-rc6 62 Friday, January 13, 2023 Approved
MongoDB 6.2.0-rc4 99 Thursday, December 15, 2022 Approved
MongoDB 6.2.0-rc3 19 Friday, December 9, 2022 Approved
MongoDB 6.2.0-rc2 32 Thursday, December 1, 2022 Approved
MongoDB 6.2.0-rc1 53 Thursday, November 17, 2022 Approved
MongoDB 6.1.1 1295 Tuesday, January 3, 2023 Approved
MongoDB 6.1.1-rc1 7 Monday, December 19, 2022 Approved
MongoDB 6.1.1-rc0 10 Thursday, November 24, 2022 Approved
MongoDB 6.1.0 3550 Tuesday, October 11, 2022 Approved
MongoDB 6.1.0-rc4 36 Tuesday, October 4, 2022 Approved
MongoDB 6.1.0-rc3 49 Wednesday, September 28, 2022 Approved
MongoDB 6.1.0-rc2 58 Thursday, September 15, 2022 Approved
MongoDB 6.1.0-rc1 45 Friday, September 9, 2022 Approved
MongoDB 6.1.0-rc0 59 Tuesday, August 30, 2022 Approved
MongoDB 6.0.5 11 Monday, March 13, 2023 Approved
MongoDB 6.0.5-rc1 7 Friday, March 3, 2023 Approved
MongoDB 6.0.5-rc0 60 Monday, February 20, 2023 Approved
MongoDB 6.0.4 21 Wednesday, January 18, 2023 Approved
MongoDB 6.0.4-rc0 7 Thursday, January 12, 2023 Approved
MongoDB 6.0.3-rc2 11 Thursday, November 10, 2022 Approved
MongoDB 6.0.2 1004 Thursday, September 29, 2022 Approved
MongoDB 6.0.2-rc1 21 Thursday, September 22, 2022 Approved
MongoDB 6.0.2-rc0 15 Tuesday, August 30, 2022 Approved
MongoDB 6.0.1 2389 Friday, August 19, 2022 Approved
MongoDB 6.0.1-rc0 21 Wednesday, August 10, 2022 Approved
MongoDB 6.0.0 2015 Tuesday, July 19, 2022 Approved
MongoDB 6.0.0-rc9 146 Thursday, June 9, 2022 Approved
MongoDB 6.0.0-rc8 54 Wednesday, June 1, 2022 Approved
MongoDB 6.0.0-rc7 59 Wednesday, May 25, 2022 Approved
MongoDB 6.0.0-rc6 43 Wednesday, May 18, 2022 Approved
MongoDB 6.0.0-rc5 49 Wednesday, May 11, 2022 Approved
MongoDB 6.0.0-rc4 39 Wednesday, May 4, 2022 Approved
MongoDB 6.0.0-rc3 44 Thursday, April 28, 2022 Approved
MongoDB 6.0.0-rc1 43 Thursday, April 21, 2022 Approved
MongoDB 6.0.0-rc0 59 Thursday, April 14, 2022 Approved
MongoDB 5.3.2 1877 Wednesday, June 22, 2022 Approved
MongoDB 5.3.2-rc2 30 Wednesday, June 1, 2022 Approved
MongoDB 5.3.2-rc1 22 Monday, May 23, 2022 Approved
MongoDB 5.3.1 4735 Friday, April 8, 2022 Approved
MongoDB 5.3.0-rc4 98 Saturday, March 19, 2022 Approved
MongoDB 5.3.0-rc3 69 Wednesday, March 9, 2022 Approved
MongoDB 5.3.0-rc2 46 Wednesday, March 2, 2022 Approved
MongoDB 5.3.0-rc1 52 Thursday, February 24, 2022 Approved
MongoDB 5.3.0-rc0 84 Wednesday, February 16, 2022 Approved
MongoDB 5.2.2-rc0 40 Thursday, March 10, 2022 Approved
MongoDB 5.2.1 4414 Thursday, February 24, 2022 Approved
MongoDB 5.2.1-rc0 46 Monday, February 14, 2022 Approved
MongoDB 5.2.0 2238 Friday, January 14, 2022 Approved
MongoDB 5.2.0-rc6 49 Wednesday, January 12, 2022 Approved
MongoDB 5.2.0-rc4 74 Thursday, January 6, 2022 Approved
MongoDB 5.2.0-rc3 55 Thursday, December 30, 2021 Approved
MongoDB 5.2.0-rc2 64 Wednesday, December 22, 2021 Approved
MongoDB 5.2.0-rc1 72 Friday, December 17, 2021 Approved
MongoDB 5.2.0-rc0 86 Thursday, December 9, 2021 Approved
MongoDB 5.1.2-rc0 38 Wednesday, December 22, 2021 Approved
MongoDB 5.1.1 2359 Monday, December 6, 2021 Approved
MongoDB 5.1.1-rc0 117 Tuesday, November 23, 2021 Approved
MongoDB 5.1.0 1674 Tuesday, November 9, 2021 Approved
MongoDB 5.1.0-rc3 65 Wednesday, November 3, 2021 Approved
MongoDB 5.1.0-rc2 84 Wednesday, October 27, 2021 Approved
MongoDB 5.1.0-rc1 67 Wednesday, October 20, 2021 Approved
MongoDB 5.1.0-rc0 75 Wednesday, October 13, 2021 Approved
MongoDB 5.0.15 1081 Friday, February 24, 2023 Approved
MongoDB 5.0.15-rc2 7 Friday, February 17, 2023 Approved
MongoDB 5.0.15-rc1 7 Saturday, January 28, 2023 Approved
MongoDB 5.0.15-rc0 5 Wednesday, January 18, 2023 Approved
MongoDB 5.0.14 2754 Monday, November 21, 2022 Approved
MongoDB 5.0.14-rc0 10 Saturday, November 12, 2022 Approved
MongoDB 5.0.13 1875 Thursday, September 29, 2022 Approved
MongoDB 5.0.13-rc0 19 Thursday, September 22, 2022 Approved
MongoDB 5.0.12 8183 Tuesday, September 6, 2022 Approved
MongoDB 5.0.12-rc0 16 Tuesday, August 30, 2022 Approved
MongoDB 5.0.11 536 Friday, August 19, 2022 Approved
MongoDB 5.0.11-rc1 19 Wednesday, August 10, 2022 Approved
MongoDB 5.0.10 690 Friday, July 29, 2022 Approved
MongoDB 5.0.10-rc0 17 Friday, July 15, 2022 Approved
MongoDB 5.0.9 1652 Tuesday, May 31, 2022 Approved
MongoDB 5.0.9-rc1 21 Wednesday, May 18, 2022 Approved
MongoDB 5.0.9-rc0 24 Tuesday, May 17, 2022 Approved
MongoDB 5.0.8 1206 Tuesday, April 26, 2022 Approved
MongoDB 5.0.8-rc0 28 Thursday, April 21, 2022 Approved
MongoDB 5.0.7 452 Monday, April 11, 2022 Approved
MongoDB 5.0.7-rc1 31 Tuesday, March 29, 2022 Exempted
MongoDB 5.0.7-rc0 35 Saturday, March 19, 2022 Approved
MongoDB 5.0.6 2037 Monday, January 31, 2022 Approved
MongoDB 5.0.6-rc2 38 Monday, January 24, 2022 Approved
MongoDB 5.0.6-rc1 53 Thursday, January 20, 2022 Approved
MongoDB 5.0.6-rc0 41 Friday, January 7, 2022 Approved
MongoDB 5.0.5 1665 Monday, December 6, 2021 Approved
MongoDB 5.0.5-rc0 37 Tuesday, November 23, 2021 Approved
MongoDB 5.0.4 719 Monday, November 15, 2021 Approved
MongoDB 5.0.4-rc0 44 Thursday, November 4, 2021 Approved
MongoDB 5.0.3 3484 Monday, September 20, 2021 Approved
MongoDB 5.0.3-rc2 51 Friday, September 17, 2021 Approved
MongoDB 5.0.3-rc1 53 Thursday, September 16, 2021 Approved
MongoDB 5.0.3-rc0 49 Tuesday, August 31, 2021 Approved
MongoDB 5.0.2 3472 Wednesday, August 4, 2021 Approved
MongoDB 5.0.2-rc0 84 Thursday, July 29, 2021 Approved
MongoDB 5.0.1 1464 Thursday, July 22, 2021 Approved
MongoDB 5.0.1-rc0 74 Monday, July 19, 2021 Approved
MongoDB 5.0.0 979 Tuesday, July 13, 2021 Approved
MongoDB 5.0.0-rc8 56 Thursday, July 8, 2021 Approved
MongoDB 5.0.0-rc7 55 Friday, July 2, 2021 Approved
MongoDB 5.0.0-rc6 59 Wednesday, June 30, 2021 Approved
MongoDB 5.0.0-rc5 69 Tuesday, June 29, 2021 Approved
MongoDB 5.0.0-rc4 54 Friday, June 25, 2021 Approved
MongoDB 5.0.0-rc3 60 Wednesday, June 23, 2021 Approved
MongoDB 5.0.0-rc2 72 Thursday, June 17, 2021 Approved
MongoDB 5.0.0-rc1 79 Thursday, June 10, 2021 Approved
MongoDB 5.0.0-rc0 113 Thursday, May 27, 2021 Approved
MongoDB 4.9.0-rc1 136 Thursday, May 6, 2021 Approved
MongoDB 4.9.0-rc0 270 Thursday, March 25, 2021 Approved
MongoDB 4.4.19 16 Friday, February 24, 2023 Approved
MongoDB 4.4.19-rc2 7 Friday, February 17, 2023 Approved
MongoDB 4.4.19-rc1 8 Tuesday, February 14, 2023 Approved
MongoDB 4.4.19-rc0 5 Friday, January 27, 2023 Approved
MongoDB 4.4.18 79 Tuesday, November 15, 2022 Approved
MongoDB 4.4.18-rc0 11 Wednesday, November 9, 2022 Approved
MongoDB 4.4.17 23 Thursday, September 29, 2022 Approved
MongoDB 4.4.17-rc2 26 Thursday, September 22, 2022 Approved
MongoDB 4.4.17-rc1 19 Thursday, September 22, 2022 Approved
MongoDB 4.4.17-rc0 15 Tuesday, August 30, 2022 Approved
MongoDB 4.4.16 22 Friday, August 19, 2022 Approved
MongoDB 4.4.16-rc0 14 Wednesday, August 10, 2022 Approved
MongoDB 4.4.15 66 Tuesday, June 21, 2022 Approved
MongoDB 4.4.15-rc0 22 Monday, June 13, 2022 Approved
MongoDB 4.4.14 29 Tuesday, May 10, 2022 Approved
MongoDB 4.4.14-rc0 21 Wednesday, April 20, 2022 Approved
MongoDB 4.4.13 1172 Monday, March 7, 2022 Approved
MongoDB 4.4.13-rc0 21 Monday, February 28, 2022 Approved
MongoDB 4.4.12 60 Friday, January 21, 2022 Approved
MongoDB 4.4.12-rc1 31 Friday, January 7, 2022 Approved
MongoDB 4.4.12-rc0 33 Friday, December 31, 2021 Approved
MongoDB 4.4.11 53 Thursday, December 30, 2021 Approved
MongoDB 4.4.11-rc1 53 Saturday, December 25, 2021 Approved
MongoDB 4.4.11-rc0 37 Tuesday, November 23, 2021 Approved
MongoDB 4.4.10 70 Friday, October 15, 2021 Approved
MongoDB 4.4.10-rc0 42 Thursday, October 7, 2021 Approved
MongoDB 4.4.9 62 Monday, September 20, 2021 Approved
MongoDB 4.4.9-rc1 62 Thursday, September 16, 2021 Approved
MongoDB 4.4.9-rc0 48 Tuesday, August 31, 2021 Approved
MongoDB 4.4.8 69 Wednesday, August 4, 2021 Approved
MongoDB 4.4.8-rc0 44 Thursday, July 29, 2021 Approved
MongoDB 4.4.7 158 Friday, July 16, 2021 Approved
MongoDB 4.4.7-rc1 49 Thursday, July 8, 2021 Approved
MongoDB 4.4.7-rc0 54 Wednesday, June 23, 2021 Approved
MongoDB 4.4.6 4564 Monday, May 10, 2021 Approved
MongoDB 4.4.6-rc0 54 Thursday, May 6, 2021 Approved
MongoDB 4.4.5 2607 Thursday, April 8, 2021 Approved
MongoDB 4.4.5-rc0 57 Friday, April 2, 2021 Approved
MongoDB 4.4.4 3473 Tuesday, February 16, 2021 Approved
MongoDB 4.4.4-rc1 110 Wednesday, February 10, 2021 Approved
MongoDB 4.4.4-rc0 115 Thursday, February 4, 2021 Approved
MongoDB 4.4.3 3089 Monday, January 4, 2021 Approved
MongoDB 4.4.3-rc0 180 Wednesday, December 16, 2020 Approved
MongoDB 4.4.2 2917 Wednesday, November 18, 2020 Approved
MongoDB 4.4.2-rc1 115 Wednesday, November 11, 2020 Approved
MongoDB 4.4.2-rc0 149 Thursday, October 29, 2020 Approved
MongoDB 4.4.1 3968 Wednesday, September 9, 2020 Approved
MongoDB 4.4.1-rc3 168 Wednesday, September 2, 2020 Approved
MongoDB 4.4.1-rc2 150 Thursday, August 27, 2020 Approved
MongoDB 4.4.1-rc1 131 Tuesday, August 25, 2020 Approved
MongoDB 4.4.1-rc0 127 Saturday, August 22, 2020 Approved
MongoDB 4.4.0.20200814 1718 Friday, August 14, 2020 Approved
MongoDB 4.4.0 617 Saturday, August 1, 2020 Approved
MongoDB 4.2.8 4237 Tuesday, June 16, 2020 Approved
MongoDB 4.2.7 1735 Monday, May 25, 2020 Approved
MongoDB 4.2.6 2237 Monday, April 20, 2020 Approved
MongoDB 4.2.5 1640 Tuesday, March 24, 2020 Approved
MongoDB 4.2.4 1516 Thursday, March 12, 2020 Approved
MongoDB 4.2.3 5537 Tuesday, January 28, 2020 Approved
MongoDB 4.2.2 3372 Tuesday, December 10, 2019 Approved
MongoDB 4.2.1 3341 Friday, October 18, 2019 Approved
MongoDB 4.2.0 7599 Sunday, August 18, 2019 Approved
MongoDB 4.0.12 2808 Friday, August 9, 2019 Approved
MongoDB 4.0.11 3909 Saturday, July 27, 2019 Approved
MongoDB 4.0.10 18483 Thursday, May 30, 2019 Approved
MongoDB 4.0.9 2464 Tuesday, April 16, 2019 Approved
MongoDB 4.0.8 1313 Friday, March 29, 2019 Approved
MongoDB 4.0.7 796 Monday, March 25, 2019 Approved
MongoDB 4.0.6 2554 Thursday, February 7, 2019 Approved
MongoDB 4.0.5 2647 Thursday, December 20, 2018 Approved
MongoDB 4.0.4 923 Sunday, December 9, 2018 Approved
MongoDB 3.6.0 21546 Tuesday, December 19, 2017 Approved
MongoDB 3.4.7 15680 Tuesday, August 8, 2017 Approved
MongoDB 3.4.6 1296 Tuesday, July 18, 2017 Approved
MongoDB 3.4.5 1212 Monday, July 3, 2017 Approved
MongoDB 3.2.10 7230 Thursday, October 27, 2016 Approved
MongoDB 3.2.9 2668 Tuesday, August 16, 2016 Approved
MongoDB 3.2.8 7293 Wednesday, July 20, 2016 Approved
MongoDB 3.2.7 584 Tuesday, June 7, 2016 Approved
MongoDB 3.2.6 1000 Friday, May 27, 2016 Approved
MongoDB 3.0.3 6347 Wednesday, May 20, 2015 Approved
MongoDB 2.4.7.1 6410 Sunday, December 22, 2013 Approved
MongoDB 2.2.0.1 2130 Friday, September 28, 2012 Approved
MongoDB 2.0.2.2 766 Monday, February 6, 2012 Approved
MongoDB 2.0.2.1 550 Monday, February 6, 2012 Approved
Discussion for the MongoDB Package

Ground Rules:

  • This discussion is only about MongoDB and the MongoDB package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or MongoDB, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus