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
2012-12-21 11:28:51 -05:00
buildscripts SERVER-7931 Re-enable some tests to run with auth 2012-12-17 18:00:35 -05:00
debian SERVER-1654 modifies Debian startup script 2012-08-02 13:52:47 -04:00
distsrc SERVER-7523 Add license notice for linenoise, s2, murmurhash 2012-11-12 10:43:24 -05:00
docs This is my first Geo cleanup change. 2012-10-23 11:41:33 -04:00
jstests SERVER-7572 - minor fix to test 2012-12-21 11:28:51 -05:00
rpm SERVER-5419: Update with current spec for 2.2.0 2012-09-06 00:52:57 +10:00
site_scons SERVER-7473 Provide functionality for registering "module" tests in SCons. 2012-10-31 12:53:39 -04:00
src use StringData in more places, and change mapsf to use any type of map 2012-12-21 10:37:23 -05:00
.gitattributes
.gitignore ignore .cache files created by Visual Studio 2012-11-28 05:51:25 -05:00
APACHE-2.0.txt
CONTRIBUTING.rst SERVER-7476 Add CONTRIBUTING file to mongodb repo 2012-11-07 17:43:46 -05:00
doxygenConfig BUMP 2.3.1 2012-11-24 23:32:00 -05:00
GNU-AGPL-3.0.txt
mongo_astyle
README DOCS-217 make all wiki links dochub links 2012-06-29 13:41:29 -04:00
SConscript.buildinfo add the js engine back to buildInfo; still need to clean this up post 2.4 2012-12-19 13:22:08 -05:00
SConscript.smoke add SSL smoke testing suite 2012-12-05 14:27:35 -05:00
SConstruct clean up geo parsing a bit 2012-12-18 09:44:00 -05: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 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.