0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 01:21:03 +01:00
The MongoDB Database
Go to file
2013-09-18 17:39:40 -04:00
buildscripts SERVER-10804 Add more details to test report generated by smoke.py 2013-09-18 11:59:49 -04:00
debian SERVER-963 move debian postinst file to server package 2013-09-16 20:30:41 -04:00
distsrc SERVER-9766 Remove support for separate client driver package 2013-09-11 16:46:52 -04:00
docs Removed old unused Model class 2013-09-04 16:25:48 -04:00
jstests SERVER-7533 added an _awaitRSHostViaRSMonitor method based on _replMonitorStats 2013-09-18 15:13:56 -04:00
rpm SERVER-9252 use [[:blank:]] instead of \s 2013-09-11 16:26:59 -04:00
site_scons SERVER-9771 allow libdeps to process emitter intermediate output with targets that may be strings 2013-09-12 16:05:43 -04:00
src SERVER-10726 Suppress warnings in build of internal v8 2013-09-18 17:38:57 -04:00
.gitattributes
.gitignore SERVER-9956 - Installer changes for enterprise edition for Windows 2013-09-13 12:49:13 -07:00
APACHE-2.0.txt
CONTRIBUTING.rst Contributor agreement now at mongodb.com, not 10gen.com 2013-08-28 12:25:53 -04:00
doxygenConfig post 2.5.2 2013-08-25 23:20:05 -04:00
GNU-AGPL-3.0.txt
mongo_astyle remove align pointer for now 2011-01-03 23:53:54 -05:00
README Update README to include backup and monitoring resource 2013-09-11 17:39:27 -04:00
SConscript.buildinfo SERVER-9775 Remove SpiderMonkey 2013-06-24 17:26:06 -04:00
SConscript.smoke SERVER-6514 Re-add support for building the C++ driver shared library 2013-06-03 20:21:13 -04:00
SConstruct SERVER-10401 Disable new clang-3.4 warning 2013-09-18 17:39:40 -04:00
valgrind.suppressions make suppression for journaling more generic to cover more cases 2012-02-27 11:23:05 -05:00
win2008plus.props add support for building Win2008Plus with Visual Studio 2011-12-28 10:40:03 -05:00

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.

DOCUMENTATION

  http://www.mongodb.org/
 
BACKUP & MONITORING

  http://mms.mongodb.com/

MAIL LISTS AND IRC

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

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.