-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
program.txt
168 lines (119 loc) · 4.25 KB
/
program.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
==========================
MongoDB Package Components
==========================
.. default-domain:: mongodb
.. contents:: On this page
:local:
:backlinks: none
:depth: 1
:class: singlecol
Core Processes
--------------
The core components in the MongoDB package are:
.. list-table::
* - :binary:`~bin.mongod`,
- the core database process
* - :binary:`~bin.mongos`
- the controller and query router for :term:`sharded clusters
<sharded cluster>`
* - :binary:`~bin.mongo`
- the interactive MongoDB Shell.
.. toctree::
:maxdepth: 1
:hidden:
/reference/program/mongod
/reference/program/mongos
/reference/program/mongo
Windows Services
----------------
The :binary:`~bin.mongod.exe` and :binary:`~bin.mongos.exe` describe the
options available for configuring MongoDB when running as a Windows
Service. The :binary:`~bin.mongod.exe` and :binary:`~bin.mongos.exe` binaries
provide a superset of the :binary:`~bin.mongod` and :binary:`~bin.mongos`
options.
- :doc:`/reference/program/mongod.exe`
- :doc:`/reference/program/mongos.exe`
.. toctree::
:maxdepth: 1
:hidden:
/reference/program/mongod.exe
/reference/program/mongos.exe
Binary Import and Export Tools
------------------------------
:binary:`~bin.mongodump` provides a method for creating :term:`BSON`
dump files from the :binary:`~bin.mongod` instances, while
:binary:`~bin.mongorestore` makes it possible to restore these
dumps. :binary:`~bin.bsondump` converts BSON dump files into
:term:`JSON`.
- :doc:`/reference/program/mongodump`
- :doc:`/reference/program/mongorestore`
- :doc:`/reference/program/bsondump`
.. toctree::
:maxdepth: 1
:hidden:
/reference/program/mongodump
/reference/program/mongorestore
/reference/program/bsondump
Data Import and Export Tools
----------------------------
:binary:`~bin.mongoimport` provides a method for taking data in :term:`JSON`,
:term:`CSV`, or :term:`TSV` and importing it into a :binary:`~bin.mongod`
instance. :binary:`~bin.mongoexport` provides a method to export data from
a :binary:`~bin.mongod` instance into JSON, CSV, or TSV.
.. note::
The conversion between BSON and other formats lacks full
type fidelity. Therefore you cannot use :binary:`~bin.mongoimport` and
:binary:`~bin.mongoexport` for round-trip import and export operations.
- :doc:`/reference/program/mongoimport`
- :doc:`/reference/program/mongoexport`
.. toctree::
:maxdepth: 1
:hidden:
/reference/program/mongoimport
/reference/program/mongoexport
Diagnostic Tools
----------------
.. note::
Starting in version 4.0, MongoDB offers :doc:`free Cloud monitoring
</administration/free-monitoring>` for standalones and replica sets.
For more information, see :doc:`/administration/free-monitoring`.
:binary:`~bin.mongostat` and :binary:`~bin.mongotop`
provide diagnostic information related to the current operation of a
:binary:`~bin.mongod` instance.
:binary:`~bin.mongoreplay` is a traffic capture and replay tool for MongoDB
that you can use to inspect and record commands sent to a MongoDB
instance, and then replay those commands back onto another host at a
later time. :binary:`~bin.mongoreplay` is available for Linux and macOS.
MongoDB 3.4 provides :binary:`~bin.mongoldap` for testing native operating system
LDAP configuration options against a running LDAP server or set of servers.
- :doc:`/reference/program/mongostat`
- :doc:`/reference/program/mongotop`
- :doc:`/reference/program/mongoreplay`
- :doc:`/reference/program/mongoldap`
.. toctree::
:maxdepth: 1
:hidden:
/reference/program/mongostat
/reference/program/mongotop
/reference/program/mongoreplay
/reference/program/mongoldap
GridFS
------
:binary:`~bin.mongofiles` provides a command-line interact to a MongoDB
:term:`GridFS` storage system.
- :doc:`/reference/program/mongofiles`
.. toctree::
:maxdepth: 1
:hidden:
/reference/program/mongofiles
MongoDB Compass
---------------
.. versionadded:: 3.6
MongoDB is packaged with an :binary:`~bin.install_compass` script, which
is a platform-specific installer for
:ref:`MongoDB Compass Community Edition <compass-index>`.
- :doc:`/reference/program/install_compass`
.. toctree::
:maxdepth: 1
:hidden:
/reference/program/install_compass