Skip to content
Please note that GitHub no longer supports your web browser.

We recommend upgrading to the latest Google Chrome or Firefox.

Learn more
The MongoDB Database
Branch: master
Clone or download
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
buildscripts SERVER-40592 Handle exceptions from {setup,teardown}_fixture(). May 3, 2019
debian SERVER-40242 Update banner inclusions for vendored tools Mar 29, 2019
distsrc SERVER-40389 small tweaks to third_party/fmt & related. Apr 8, 2019
docs SERVER-32295 Support Python 3 Apr 8, 2019
etc SERVER-40922 npm install before running the fuzzer May 3, 2019
jstests SERVER-40498 Side transaction keeps the same locker May 4, 2019
pytests SERVER-40542 Remove references to pip2 Apr 10, 2019
rpm SERVER-40242 Update banner inclusions for vendored tools Mar 29, 2019
site_scons SERVER-40694 Make icecream.py site_tool support Python 3.5 Apr 24, 2019
src SERVER-40765 TaskExecutor inherits from OutOfLineExecutor May 4, 2019
.clang-format SERVER-23971 Update Clang-Format Options for llvm 3.8 and mongo 3.4 s… May 28, 2016
.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-40912 Add mongocryptd to .gitignore May 1, 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-37651 Update license information Oct 16, 2018
README.third_party.md SERVER-40833 Update third party library document May 3, 2019
SConstruct SERVER-39664 log the toolchain's build id as an FYI when building mon… Apr 29, 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 open-source. 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.