0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 17:10:48 +01:00
The MongoDB Database
Go to file
2014-12-03 11:55:07 -05:00
buildscripts Revert "SERVER-16002 SERVER-16369 Cluster / standalone auth tests." 2014-12-02 15:42:26 -05:00
debian SERVER-15598 Use dynamic dependencies for enterprise .debs 2014-10-31 16:51:18 -04:00
distsrc SERVER-15976 update THIRD-PARTY-NOTICES for WiredTiger 3rd party software 2014-11-06 13:51:29 -05:00
docs SERVER-16197 Update docs/building.md for 2.8 2014-11-24 11:20:58 -05:00
etc SERVER-16221 Don't instrument third_party when using ubsan 2014-11-18 12:57:17 -05:00
jstests SERVER-16397 Throttle migration rate in mr_during_migrate.js 2014-12-03 10:39:41 -05:00
rpm Revert "Revert "post 2.8.0-rc1"" 2014-11-23 13:26:54 -05:00
site_scons SERVER-1424 (re)smoke tag parsing and new test library, v0 2014-09-18 14:37:45 -04:00
src SERVER-16233 validate storage engine options at index creation 2014-12-03 11:55:07 -05:00
.gitattributes
.gitignore Remove mongo-tools now built in go from .gitignore 2014-10-31 17:10:06 -04:00
APACHE-2.0.txt
CONTRIBUTING.rst SERVER-14397: Update Building.md & Contributing.rst 2014-07-01 13:38:52 -04:00
doxygenConfig Revert "Revert "post 2.8.0-rc1"" 2014-11-23 13:26:54 -05:00
GNU-AGPL-3.0.txt
mongo_astyle
README SERVER-15855 update documentation about how packages are created 2014-10-29 15:04:13 -04:00
SConscript.buildinfo SERVER-13453 Strip C++ client driver artifacts from the server tree 2014-04-19 15:02:10 -04:00
SConscript.smoke SERVER-15882 Delete dbtests/perf/perftest, which doesn't actually work. 2014-11-04 20:32:14 -05:00
SConstruct SERVER-15357: Disable optimizations on Windows debug builds 2014-11-26 10:47:40 -05:00
valgrind.suppressions SERVER-14536 Helgrind suppressions for race-prone counters.cpp code 2014-07-23 11:23:01 -04:00
win2008plus.props

MongoDB README

Welcome to MongoDB!

COMPONENTS

  mongod - The database process.
  mongos - Sharding controller.
  mongo  - The database shell (uses interactive javascript).

UTILITIES

  mongodump         - MongoDB dump tool - for backups, snapshots, etc.
  mongorestore      - MongoDB restore a dump
  mongoexport       - Export a single collection to test (JSON, CSV)
  mongoimport       - Import from JSON or CSV
  mongofiles        - Utility for putting and getting files from MongoDB GridFS
  mongostat         - Show performance statistics

BUILDING

  See docs/building.md, also www.mongodb.org search for "Building".

RUNNING

  For command line options invoke:

    $ ./mongod --help

  To run a single server database:

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

DRIVERS

  Client drivers for most programming languages are available at mongodb.org.  Use the 
  shell ("mongo") for administrative tasks.

PACKAGING

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

DOCUMENTATION

  http://www.mongodb.org/
 
CLOUD MANAGED MONGODB

  http://mms.mongodb.com/

MAIL LISTS AND IRC

  http://dochub.mongodb.org/core/community
  
LEARN MONGODB

  http://university.mongodb.com/

32 BIT BUILD NOTES

  MongoDB uses memory mapped files.  If built as a 32 bit executable, you will
  not be able to work with large (multi-gigabyte) databases.  However, 32 bit
  builds work fine with small development databases.

LICENSE

  Most MongoDB source files (src/mongo folder and below) are made available under the terms of the
  GNU Affero General Public License (AGPL).  See individual files for
  details.

  As an exception, the files in the client/, debian/, rpm/,
  utils/mongoutils, and all subdirectories thereof are made available under
  the terms of the Apache License, version 2.0.