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
2012-01-07 10:00:21 -05:00
buildscripts make TestData actually work on Windows 2012-01-06 15:07:48 -05:00
debian SERVER-4593: Ensure mongoimport allows imports of up to 16MB in BSON size. 2012-01-05 12:20:25 -08:00
distsrc Always build a shared C++ library in the standalone driver's SConstruct. 2011-10-06 10:35:11 -04:00
docs SERVER-4614: prohibit read-only users from restoring data via mongorestore 2012-01-05 03:02:54 -08:00
jstests debugging for reconfig.js 2012-01-07 10:00:21 -05:00
rpm Do a better job stopping mongod from RPM init script. SERVER-3824 2011-12-01 18:16:58 -05:00
src get rid of old jni js engine entirely 2012-01-07 09:19:55 -05:00
.gitattributes
.gitignore filter out new VS configuration's build product directories 2011-12-28 13:08:27 -05:00
APACHE-2.0.txt
doxygenConfig 2.1.0 prep 2011-09-10 19:56:56 -04:00
gch.py
GNU-AGPL-3.0.txt
mongo_astyle remove align pointer for now 2011-01-03 23:53:54 -05:00
README update and normalize readme files a bit 2011-05-01 17:50:23 -04:00
SConstruct SERVER-3832 2012-01-06 15:54:50 -08:00
valgrind.suppressions suppress "syscall with uninitialized bytes in buffer" 2011-12-13 09:33:28 -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/

MAIL LISTS AND IRC

  http://www.mongodb.org/display/DOCS/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.