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
2012-12-14 17:42:58 -05:00
buildscripts SERVER-7931 Skip jstests/mr_killop.js when running tests with auth 2012-12-14 12:49:44 -05:00
debian
distsrc SERVER-7523 Add license notice for linenoise, s2, murmurhash 2012-11-12 10:43:24 -05:00
docs This is my first Geo cleanup change. 2012-10-23 11:41:33 -04:00
jstests SERVER-7376 migrate deletion not aggressive enough and tied to migrate moves 2012-12-14 17:28:30 -05:00
rpm
site_scons SERVER-7473 Provide functionality for registering "module" tests in SCons. 2012-10-31 12:53:39 -04:00
src SERVER-7126 SERVER-7572 Don't use DBDirectClient in AuthorizationManager 2012-12-14 17:42:58 -05:00
.gitattributes
.gitignore ignore .cache files created by Visual Studio 2012-11-28 05:51:25 -05:00
APACHE-2.0.txt
CONTRIBUTING.rst SERVER-7476 Add CONTRIBUTING file to mongodb repo 2012-11-07 17:43:46 -05:00
doxygenConfig BUMP 2.3.1 2012-11-24 23:32:00 -05:00
GNU-AGPL-3.0.txt
mongo_astyle
README
SConscript.buildinfo SERVER-7118 Change "mongo modules" to use SConscript files for modules. 2012-10-23 16:35:42 -04:00
SConscript.smoke add SSL smoke testing suite 2012-12-05 14:27:35 -05:00
SConstruct SERVER-7405 Stage banners as requested in modules 2012-11-27 09:58:07 -05: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.