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-04-23 14:57:50 -04:00
buildscripts avoid error message on Windows builds 2012-04-20 14:10:11 -04:00
debian SERVER-3574 updating init scripts for numa 2012-02-28 12:10:49 -05:00
distsrc SERVER-3331: On Windows, build the client driver, even if you cannot find the boost libraries. 2012-04-12 22:25:36 -04:00
docs replace assert with verify SERVER-1259 2012-03-26 12:58:52 -04:00
jstests buildbot slaveok_routing.js need to wait for mongos to detect shard secondaries when first initialized 2012-04-23 14:57:50 -04:00
rpm SERVER-5179 add requirements for pre/post actions 2012-03-06 19:24:35 -05:00
site_scons SERVER-5254: Make LIBDEPS dependency order stable across SCons invocations. 2012-03-30 13:20:40 -04:00
src Updated test for SERVER-5405 to make it pass Windows builds. 2012-04-20 17:36:42 -04:00
.gitattributes treat xcode config files as binary 2009-02-02 11:44:56 -05:00
.gitignore a couple of more gitignores 2012-04-18 20:26:25 -04: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 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 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.buildinfo SCons refactoring, cleans up building and testing the C++ client. 2012-03-23 10:35:31 -04:00
SConscript.smoke add buildlogger (separate test output) 2012-03-23 15:47:30 -04:00
SConstruct SCons: No need to check for libstdc++ when building on *nix machines. 2012-04-19 13:45:44 -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.