0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/README

84 lines
2.1 KiB
Plaintext
Raw Normal View History

MongoDB README
Welcome to MongoDB!
COMPONENTS
2017-02-24 23:42:25 +01:00
mongod - The database server.
mongos - Sharding router.
mongo - The database shell (uses interactive javascript).
UTILITIES
2017-02-24 23:42:25 +01:00
mongodump - Create a binary dump of the contents of a database.
mongorestore - Restore data from the output created by mongodump.
mongoexport - Export the contents of a collection to JSON or CSV.
mongoimport - Import data from JSON, CSV or TSV.
mongofiles - Put, get and delete files from GridFS.
mongostat - Show the status of a running mongod/mongos.
bsondump - Convert BSON files into human-readable formats.
mongoreplay - Traffic capture and replay tool.
mongotop - Track time spent reading and writing data.
BUILDING
2017-02-24 23:42:25 +01:00
See docs/building.md.
RUNNING
2010-06-17 16:38:09 +02:00
For command line options invoke:
2010-05-02 03:36:33 +02:00
$ ./mongod --help
2010-05-02 03:36:33 +02:00
To run a single server database:
2017-02-24 23:42:25 +01:00
$ sudo mkdir -p /data/db
2010-05-02 03:36:33 +02:00
$ ./mongod
$
2010-06-17 16:38:09 +02:00
$ # The mongo javascript shell connects to localhost and test database by default:
2017-02-24 23:42:25 +01:00
$ ./mongo
2010-05-02 03:36:33 +02:00
> help
2010-06-17 16:38:09 +02:00
DRIVERS
2015-10-28 20:42:46 +01:00
Client drivers for most programming languages are available at
2017-02-24 23:42:25 +01:00
https://docs.mongodb.com/manual/applications/drivers/. Use the shell
("mongo") for administrative tasks.
BUG REPORTS
See https://github.com/mongodb/mongo/wiki/Submit-Bug-Reports.
2010-06-17 16:38:09 +02:00
PACKAGING
2015-10-28 20:42:46 +01:00
Packages are created dynamically by the package.py script located in the
buildscripts directory. This will generate RPM and Debian packages.
DOCUMENTATION
2017-02-24 23:42:25 +01:00
https://docs.mongodb.com/manual/
2017-02-24 23:42:25 +01:00
CLOUD HOSTED MONGODB
2017-02-24 23:42:25 +01:00
https://www.mongodb.com/cloud/atlas
2017-02-24 23:42:25 +01:00
MAIL LISTS
https://groups.google.com/forum/#!forum/mongodb-user
2017-02-24 23:42:25 +01:00
A forum for technical questions about using MongoDB.
2017-02-24 23:42:25 +01:00
https://groups.google.com/forum/#!forum/mongodb-dev
2017-02-24 23:42:25 +01:00
A forum for technical questions about building and developing MongoDB.
LEARN MONGODB
https://university.mongodb.com/
2010-06-17 16:38:09 +02:00
LICENSE
2015-10-28 20:42:46 +01:00
Most MongoDB source files (src/mongo folder and below) are made available
2017-02-24 23:42:25 +01:00
under the terms of the GNU Affero General Public License (GNU AGPLv3). See
2015-10-28 20:42:46 +01:00
individual files for details.