• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

buildscripts/H03-May-2022-52,99939,068

debian/H07-May-2022-10,4769,549

distsrc/H03-May-2022-1,8541,509

docs/H16-Feb-2021-297218

etc/H07-May-2022-17,70816,684

jstests/H16-Feb-2021-1,6701,594

pytests/H03-May-2022-2,7142,096

rpm/H03-May-2022-2,8922,240

site_scons/H03-May-2022-3,6772,714

src/H16-Feb-2021-4,921,8503,493,199

.clang-formatH A D16-Feb-20214.8 KiB171169

.eslintignoreH A D16-Feb-202129 32

.eslintrc.ymlH A D16-Feb-2021795 4240

.gdbinitH A D16-Feb-2021308 128

.gitattributesH A D16-Feb-202174 43

.gitignoreH A D16-Feb-20211.6 KiB156137

CONTRIBUTING.rstH A D16-Feb-2021366 106

READMEH A D16-Feb-20212.6 KiB9660

SConstructH A D03-May-2022125.6 KiB3,3922,817

version.jsonH A D16-Mar-202186 44

README

1MongoDB README
2
3Welcome to MongoDB 3.6!
4
5COMPONENTS
6
7  mongod - The database server.
8  mongos - Sharding router.
9  mongo  - The database shell (uses interactive javascript).
10
11UTILITIES
12
13  mongodump         - Create a binary dump of the contents of a database.
14  mongorestore      - Restore data from the output created by mongodump.
15  mongoexport       - Export the contents of a collection to JSON or CSV.
16  mongoimport       - Import data from JSON, CSV or TSV.
17  mongofiles        - Put, get and delete files from GridFS.
18  mongostat         - Show the status of a running mongod/mongos.
19  bsondump          - Convert BSON files into human-readable formats.
20  mongoreplay       - Traffic capture and replay tool.
21  mongotop          - Track time spent reading and writing data.
22  install_compass   - Installs MongoDB Compass for your platform.
23
24BUILDING
25
26  See docs/building.md.
27
28RUNNING
29
30  For command line options invoke:
31
32    $ ./mongod --help
33
34  To run a single server database:
35
36    $ sudo mkdir -p /data/db
37    $ ./mongod
38    $
39    $ # The mongo javascript shell connects to localhost and test database by default:
40    $ ./mongo
41    > help
42
43INSTALLING COMPASS
44
45  You can install compass using the install_compass script packaged with MongoDB:
46
47    $ ./install_compass
48
49  This will download the appropriate MongoDB Compass package for your platform
50  and install it.
51
52DRIVERS
53
54  Client drivers for most programming languages are available at
55  https://docs.mongodb.com/manual/applications/drivers/. Use the shell
56  ("mongo") for administrative tasks.
57
58BUG REPORTS
59
60  See https://github.com/mongodb/mongo/wiki/Submit-Bug-Reports.
61
62PACKAGING
63
64  Packages are created dynamically by the package.py script located in the
65  buildscripts directory. This will generate RPM and Debian packages.
66
67DOCUMENTATION
68
69  https://docs.mongodb.com/manual/
70
71CLOUD HOSTED MONGODB
72
73  https://www.mongodb.com/cloud/atlas
74
75MAIL LISTS
76
77  https://groups.google.com/forum/#!forum/mongodb-user
78
79    A forum for technical questions about using MongoDB.
80
81  https://groups.google.com/forum/#!forum/mongodb-dev
82
83    A forum for technical questions about building and developing MongoDB.
84
85LEARN MONGODB
86
87  https://university.mongodb.com/
88
89LICENSE
90
91  MongoDB is free and the source is available. Versions released prior to
92  October 16, 2018 are published under the AGPL. All versions released after
93  October 16, 2018, including patch fixes for prior versions, are published
94  under the Server Side Public License (SSPL) v1. See individual files for
95  details.
96