Skip to content
The MongoDB Database
C++ JavaScript Python Go Shell C Other
Branch: master
Clone or download
Mihai Andrei evergreen
Latest commit c119ef4 Oct 14, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
buildscripts SERVER-43966 Remove manual internal query flag toggling from map_redu… Oct 14, 2019
debian SERVER-43407 Move mongocryptd to separate deb/rpms Sep 25, 2019
distsrc SERVER-26906 Add constexpr function to convert Durations May 31, 2019
docs SERVER-41757 Fix issues with the building documentation Jun 19, 2019
etc SERVER-34709 Test only compiles for push variants can be less strict Oct 11, 2019
jstests SERVER-43885 Rename OplogApplierImpl methods Oct 14, 2019
pytests SERVER-42615 Run chkdsk command on Windows after each powercycle loop. Aug 2, 2019
rpm SERVER-43407 Move mongocryptd to separate deb/rpms Sep 25, 2019
site_scons SERVER-43368 Revert SCons icecream integration to working state Oct 11, 2019
src SERVER-43885 Rename OplogApplierImpl methods Oct 14, 2019
.clang-format SERVER-41771 Use `clang-format-7.0.1` in our clang-format helper script Jul 27, 2019
.eslintignore SERVER-31390 Use a templating language to generate error_codes.{h,cpp… Nov 2, 2017
.eslintrc.yml SERVER-23728 Enable the no-unused-expressions ESLint rule Apr 5, 2017
.gdbinit SERVER-28668 Add mongo_printers.py to .gdbinit Apr 7, 2017
.gitattributes SERVER-29877 Mount /data on EBS volume in AWS EC2 instance Jul 6, 2017
.gitignore SERVER-43160 Updating rpm, deb, signing, and MSI packaging for mongok… Sep 24, 2019
.lldbinit SERVER-41168 Add lldb comment to .lldbinit Jun 17, 2019
.pydocstyle SERVER-40559 Python linters do not run after upgrade to Python 3 Apr 16, 2019
.pylintrc SERVER-40559 Python linters do not run after upgrade to Python 3 Apr 16, 2019
.style.yapf SERVER-23312 Format Python files with yapf Mar 26, 2018
APACHE-2.0.txt Add the Apache 2 license, add licensing info to README. MINOR Feb 3, 2010
CONTRIBUTING.rst SERVER-29767 Update CONTRIBUTING.rst to point to github wiki Jun 21, 2017
LICENSE-Community.txt SERVER-37651 Fix typo in license files Oct 17, 2018
README SERVER-41833 Update README license text Jun 20, 2019
README.third_party.md SERVER-43710 Upgrade Zstandard to version 1.4.3 Oct 9, 2019
SConstruct SERVER-43979 Prefer lld when available Oct 14, 2019
mypy.ini SERVER-32295 Support Python 3 Apr 8, 2019

README

MongoDB README

Welcome to MongoDB!

COMPONENTS

  mongod - The database server.
  mongos - Sharding router.
  mongo  - The database shell (uses interactive javascript).

UTILITIES

  mongodump         - Create a binary dump of the contents of a database.
  mongorestore      - Restore data from the output created by mongodump.
  mongoexport       - Export the contents of a collection to JSON or CSV.
  mongoimport       - Import data from JSON, CSV or TSV.
  mongofiles        - Put, get and delete files from GridFS.
  mongostat         - Show the status of a running mongod/mongos.
  bsondump          - Convert BSON files into human-readable formats.
  mongoreplay       - Traffic capture and replay tool.
  mongotop          - Track time spent reading and writing data.
  install_compass   - Installs MongoDB Compass for your platform.

BUILDING

  See docs/building.md.

RUNNING

  For command line options invoke:

    $ ./mongod --help

  To run a single server database:

    $ sudo mkdir -p /data/db
    $ ./mongod
    $
    $ # The mongo javascript shell connects to localhost and test database by default:
    $ ./mongo
    > help

INSTALLING COMPASS

  You can install compass using the install_compass script packaged with MongoDB:

    $ ./install_compass

  This will download the appropriate MongoDB Compass package for your platform
  and install it.

DRIVERS

  Client drivers for most programming languages are available at
  https://docs.mongodb.com/manual/applications/drivers/. Use the shell
  ("mongo") for administrative tasks.

BUG REPORTS

  See https://github.com/mongodb/mongo/wiki/Submit-Bug-Reports.

PACKAGING

  Packages are created dynamically by the package.py script located in the
  buildscripts directory. This will generate RPM and Debian packages.

DOCUMENTATION

  https://docs.mongodb.com/manual/

CLOUD HOSTED MONGODB

  https://www.mongodb.com/cloud/atlas

MAIL LISTS

  https://groups.google.com/forum/#!forum/mongodb-user

    A forum for technical questions about using MongoDB.

  https://groups.google.com/forum/#!forum/mongodb-dev

    A forum for technical questions about building and developing MongoDB.

LEARN MONGODB

  https://university.mongodb.com/

LICENSE

  MongoDB is free and the source is available. Versions released prior to
  October 16, 2018 are published under the AGPL. All versions released after
  October 16, 2018, including patch fixes for prior versions, are published
  under the Server Side Public License (SSPL) v1. See individual files for
  details.
You can’t perform that action at this time.