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
2013-06-06 15:05:29 -04:00
buildscripts SERVER-6514 Don't attempt to test shared library clients for out of tree builds 2013-06-06 13:39:50 -04:00
debian
distsrc SERVER-6514 Only apply -zdefs and --as-needed to shared client library 2013-06-06 13:39:50 -04:00
docs
jstests SERVER-7176 Cap the amount of array backfilling in an update. 2013-06-04 10:50:19 -04:00
rpm
site_scons Fix SYSLIBDEPS to not add empty libraries to link list, to match LIBDEPS' behavior 2013-06-06 15:05:29 -04:00
src SERVER-9338 ensure maintenanceMode properly decremented 2013-06-06 11:13:56 -07:00
.gitattributes
.gitignore SERVER-6514 Re-add support for building the C++ driver shared library 2013-06-03 20:21:13 -04:00
APACHE-2.0.txt
CONTRIBUTING.rst
doxygenConfig post 2.5.0 2013-05-22 13:30:16 -04:00
GNU-AGPL-3.0.txt
mongo_astyle
README
SConscript.buildinfo
SConscript.smoke SERVER-6514 Re-add support for building the C++ driver shared library 2013-06-03 20:21:13 -04:00
SConstruct SERVER-6514 Only apply -zdefs and --as-needed to shared client library 2013-06-06 13:39:50 -04:00
valgrind.suppressions
win2008plus.props

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://dochub.mongodb.org/core/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 (src/mongo folder and below) 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.