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
Andy Schwerin 57f64fe508 SERVER-5852: Use frame-pointers in 64-bit FreeBSD builds.
This makes execinfo:backtrace() work, and should have a minimal impact on
performance.
2012-06-08 17:59:21 -04:00
buildscripts SERVER-5998: add smokeCppUnittests target to SCons & smoke.py 2012-06-05 12:58:08 -04:00
debian Fixed a typo in the port for the HTTP interface 2012-05-15 22:40:01 +01:00
distsrc some distros need explicit pthread library on linker command line 2012-05-02 15:42:26 -04:00
docs replace assert with verify SERVER-1259 2012-03-26 12:58:52 -04:00
jstests bye bye medianKey command, was nice knowin' ya 2012-06-08 17:23:23 -04:00
rpm SERVER-5179 add requirements for pre/post actions 2012-03-06 19:24:35 -05:00
site_scons SERVER-5702: Add ability to register unit tests in SCons. 2012-06-04 13:08:27 -04:00
src bye bye medianKey command, was nice knowin' ya 2012-06-08 17:23:23 -04:00
.gitattributes
.gitignore added a file for emr 2012-05-25 15:05:07 -04:00
APACHE-2.0.txt
doxygenConfig post 2.1.1 2012-05-01 22:42:06 -04: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 SERVER-5998: add smokeCppUnittests target to SCons & smoke.py 2012-06-05 12:58:08 -04:00
SConstruct SERVER-5852: Use frame-pointers in 64-bit FreeBSD builds. 2012-06-08 17:59:21 -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.