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-02-27 01:33:22 -08:00
buildscripts Buildbot - don't try to create admin user twice. 2012-02-24 16:34:11 -05:00
debian BUMP 2.1.0 2012-02-03 09:32:28 -05:00
distsrc SERVER-5057 C++ Client Build Break 2012-02-23 18:12:57 -05:00
docs DOCS-129: update build instructions for Ubuntu and OS X 2012-02-21 10:05:28 -05:00
jstests SERVER-4921: assert threshold back to 3 2012-02-27 01:33:22 -08:00
rpm Merge pull request #134 from presbrey/patch-1 2012-02-21 11:02:43 -08:00
site_scons hopefully last 32-bit solaris hack, seems to work for all 3 types of binaries 2012-01-30 16:12:24 -05:00
src SERVER-5034: strange object behavior in v8 shell, reworked wrapper handling of keys 2012-02-27 01:27:09 -08:00
.gitattributes
.gitignore SERVER-4989: MR: errors that happen during sharded post processing are ignored 2012-02-17 17:10:04 -08:00
APACHE-2.0.txt
doxygenConfig post 2.1.0 2012-02-03 17:52:26 -05:00
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
SConscript.smoke BUILDBOT-95: need AlwaysBuild and SideEffect for recent failures 2012-02-24 08:00:56 -05:00
SConstruct Revert "BUILDBOT-58: use s3tool to do s3-related work (and remove old, unused s3 scripts)" 2012-02-18 01:55:34 -05: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.