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
2012-09-18 17:22:05 -04:00
buildscripts Don't start a mongod when running CppUnittests. 2012-09-13 12:49:32 -04:00
debian SERVER-1654 modifies Debian startup script 2012-08-02 13:52:47 -04:00
distsrc Tweak tcmalloc license notice with request from legal 2012-08-16 11:53:45 -04:00
docs DOCS-217 make all wiki links dochub links 2012-06-29 13:41:29 -04:00
jstests SERVER-6909 fix case where update can modify document such that query doesn't work anymore 2012-09-18 02:08:03 -04:00
rpm SERVER-5419: Update with current spec for 2.2.0 2012-09-06 00:52:57 +10:00
site_scons SERVER-6960 Always link object files and static archives in the same order. 2012-09-07 14:18:42 -04:00
src SERVER-7061 mongos can use invalid ptr to master conn when setShardVersion fails 2012-09-18 17:17:26 -04:00
.gitattributes
.gitignore
APACHE-2.0.txt
doxygenConfig master is tracking 2.3 2012-08-12 20:47:22 -04:00
GNU-AGPL-3.0.txt
mongo_astyle
README DOCS-217 make all wiki links dochub links 2012-06-29 13:41:29 -04:00
SConscript.buildinfo discover and configure modules in db/modules/ 2012-07-06 16:08:39 -04:00
SConscript.smoke Don't start a mongod when running CppUnittests. 2012-09-13 12:49:32 -04:00
SConstruct fix module searchpath for 2.2 2012-09-18 17:22:05 -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/

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 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.