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-03-23 09:12:20 -04:00
buildscripts make buildscripts pay attention to fassert and assign error codes 2012-03-23 00:46:36 -04:00
debian SERVER-3574 updating init scripts for numa 2012-02-28 12:10:49 -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-5288 Use appendNumber when writing long longs to explain output. 2012-03-22 15:52:00 -07:00
rpm SERVER-5179 add requirements for pre/post actions 2012-03-06 19:24:35 -05: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 with the last change to admin db locking behavior it is now only allowed to be nested for reading. so changing the test to match that 2012-03-23 09:12:20 -04: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 DOCS-152 fixing doxygenConfig for 2.1-series cpp driver documentation builds 2012-03-05 16:58:38 -05:00
GNU-AGPL-3.0.txt
mongo_astyle
README update and normalize readme files a bit 2011-05-01 17:50:23 -04:00
SConscript.smoke BUILDBOT-104 remove startMongod, add mongod dep for most tests 2012-03-20 13:50:15 -04:00
SConstruct Remove debugging print statement from SConstruct. 2012-03-19 17:09:33 -04:00
valgrind.suppressions make suppression for journaling more generic to cover more cases 2012-02-27 11:23:05 -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.