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-02 15:54:11 -05:00
buildscripts SERVER-4994 use normpath() for correct behavior on windows 2012-02-29 20:24:03 -05: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 fix test name for fewer unit test collisions with shard1.js 2012-03-02 14:57:52 -05:00
rpm SERVER-3574 updating init scripts for numa 2012-02-28 12:10:49 -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 SERVER-4707 - don't print left:4 since its ok and common 2012-03-02 14:55:42 -05:00
.gitattributes treat xcode config files as binary 2009-02-02 11:44:56 -05:00
.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 Add the Apache 2 license, add licensing info to README. MINOR 2010-02-03 13:31:51 -05:00
doxygenConfig post 2.1.0 2012-02-03 17:52:26 -05:00
GNU-AGPL-3.0.txt license 2008-07-22 09:45:40 -04:00
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 add gcov option to scons to prep for SERVER-1600 2012-03-02 15:54:11 -05: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.