0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
The MongoDB Database
Go to file
2013-09-25 21:41:28 -04:00
buildscripts SERVER-3579 Packaging logic cleanup 2013-09-25 21:41:28 -04:00
debian SERVER-3579 replace mongo-10gen and mongodb-10gen with mongodb-org 2013-09-25 21:41:28 -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 Create temporary holding area for tests which use explain() 2013-09-25 15:51:45 -04:00
rpm SERVER-3579 version bump in spec file 2013-09-25 21:41:28 -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-10159 Avoid forming past end iterator when reserializing 2013-09-25 19:11:43 -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
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-10816 enable StackChecker when not optimized and in debug mode rather than when simply in debug mode 2013-09-25 10:40:14 -04:00
valgrind.suppressions
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.

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.