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
2017-02-14 10:54:29 -05:00
buildscripts SERVER-15749: Tag disk jstests that are mmap only. Run a disk_WT suite on those not filtered by the tag. 2017-02-08 13:55:59 -05:00
debian SERVER-26652 - reformat systemd service comments 2016-10-18 14:53:06 -04:00
distsrc SERVER-22371 Add ICU license to THIRD-PARTY-NOTICES 2016-04-04 18:29:22 -04:00
docs SERVER-25750: updated VPAT to remove obsolete contact information and methods 2016-11-03 12:27:21 -04:00
etc SERVER-28000 sys-perf: Organize all dsi yaml config files under configurations/ 2017-02-14 14:33:15 +02:00
jstests SERVER-27930 Invalidate old index record IDs after renaming collections 2017-02-13 11:30:00 -05:00
rpm SERVER-27363 Fix typo in packaging script 2016-12-12 17:55:15 -05:00
site_scons SERVER-14605 Make SYSLIBDEPS dependency order stable across SCons invocations 2017-02-01 16:00:23 -05:00
src SERVER-27936 Fix yielding in handleDuplicateDbName 2017-02-13 16:18:35 -05:00
.clang-format SERVER-23971 Update Clang-Format Options for llvm 3.8 and mongo 3.4 style update 2016-05-28 17:55:11 -04:00
.eslintignore SERVER-25814 Do not lint the vendored gotools 2016-08-26 16:58:13 -04:00
.eslintrc.yml SERVER-23016 Update .eslintrc.yml for newer versions of ESLint 2016-03-08 18:35:53 -05:00
.gdbinit SERVER-26634 GDB Pretty-Printers and Commands 2016-12-09 17:57:44 -05:00
.gitattributes
.gitignore Cleanup .gitignore and add exclude for VSCode projects 2017-02-14 10:54:29 -05:00
APACHE-2.0.txt
CONTRIBUTING.rst
GNU-AGPL-3.0.txt
README Fix long lines 2015-10-28 15:42:54 -04:00
SConstruct SERVER-27898 pthread_setname_np test should be compiled as cpp 2017-02-07 11:15:26 -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.

PACKAGING

  Packages are created dynamically by the package.py script located in the
  buildscripts directory. This will generate RPM and Debian packages.

DOCUMENTATION

  http://www.mongodb.org/
 
CLOUD MANAGED MONGODB

  http://cloud.mongodb.com/

MAIL LISTS AND IRC

  http://dochub.mongodb.org/core/community
  
LEARN MONGODB

  http://university.mongodb.com/

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.