Skip to content

Commit c8ba92b

Browse files
DOCSP-42996 mcli nested components (#935)
(cherry picked from commit 55eb2e3)
1 parent 332f302 commit c8ba92b

File tree

5 files changed

+29
-38
lines changed

5 files changed

+29
-38
lines changed

source/configure/environment-variables.txt

Lines changed: 21 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -134,46 +134,42 @@ The {+mcli+} supports the following environment variables:
134134
- The absolute |url| or the hostname and port in the
135135
``hostname[:port]`` format.
136136

137-
.. example::
137+
The following example shows how to set up the environment
138+
variable if your proxy configuration doesn't require
139+
authentication.
138140

139-
The following example shows how to set up the environment
140-
variable if your proxy configuration doesn't require
141-
authentication.
141+
.. code-block:: sh
142+
:copyable: false
142143

143-
.. code-block:: sh
144-
:copyable: false
144+
HTTP_PROXY=<my.proxy.address>
145145

146-
HTTP_PROXY=<my.proxy.address>
146+
The following example shows how to set up the environment
147+
variable if your proxy configuration requires authentication.
147148

148-
The following example shows how to set up the environment
149-
variable if your proxy configuration requires authentication.
149+
.. code-block:: sh
150+
:copyable: false
150151

151-
.. code-block:: sh
152-
:copyable: false
152+
HTTP_PROXY=username:password@<my.proxy.address>
153153

154-
HTTP_PROXY=username:password@<my.proxy.address>
154+
The following example shows how to set up the environment
155+
variable if the scheme is ``socks5``.
155156

156-
The following example shows how to set up the environment
157-
variable if the scheme is ``socks5``.
157+
.. code-block:: sh
158+
:copyable: false
158159

159-
.. code-block:: sh
160-
:copyable: false
161-
162-
HTTP_PROXY=socks5://<my.proxy.address>
160+
HTTP_PROXY=socks5://<my.proxy.address>
163161

164162
* - ``HTTPS_PROXY``, ``https_proxy``
165163
- The absolute |url|. If ``HTTP_PROXY`` is also set, this takes
166164
precedence over ``HTTP_PROXY`` for all requests.
167165

168-
.. example::
169-
170-
The following example shows how to set up the environment
171-
variable.
166+
For example, the following shows how to set up the environment
167+
variable.
172168

173-
.. code-block:: sh
174-
:copyable: false
169+
.. code-block:: sh
170+
:copyable: false
175171

176-
HTTPS_PROXY=https://<my.proxy.address>
172+
HTTPS_PROXY=https://<my.proxy.address>
177173

178174
* - ``NO_PROXY``, ``no_proxy``
179175
- Indicates no proxy for the |url| because proxy isn't configured

source/includes/steps-install-mcli-binary.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ level: 4
55
title: "Install the {+mcli+}."
66
content: |
77
8-
1. Download and extract the correct binary for your operating system:
8+
a. Download and extract the correct binary for your operating system:
99
1010
.. list-table::
1111
:header-rows: 1

source/includes/steps-install-mcli-source.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content: |
77
To run ``mongocli`` commands from anywhere in your system, you must
88
either:
99
10-
1. Add the location of the executable to your ``PATH`` or
10+
a. Add the location of the executable to your ``PATH`` or
1111
#. Move the executable to a directory in your ``PATH``.
1212
1313
You can accomplish this in several ways, depending on your personal

source/includes/steps-update-mcli-binary.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ level: 4
55
title: "Update the {+mcli+}."
66
content: |
77
8-
1. Remove any existing {+mcli+} binaries to prevent
8+
a. Remove any existing {+mcli+} binaries to prevent
99
conflicts between versions.
1010
1111
#. Download and extract the correct binary for your operating system:

source/reference/mms-cluster-settings-file.txt

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -275,9 +275,7 @@ replica set member:
275275
The value can range from ``256`` MB to ``10`` TB. By default,
276276
the in-memory storage engine uses 50% of physical RAM minus 1 GB.
277277

278-
.. note:: Enterprise Feature
279-
280-
Available for MongoDB Enterprise only.
278+
**This is available for MongoDB Enterprise only.**
281279

282280
This setting corresponds to the
283281
:setting:`inMemorySizeGB
@@ -653,14 +651,11 @@ replica set member:
653651
* - ``wiredTiger.engineConfig.``
654652
``maxCacheOverflowFileSizeGB``
655653
- float
656-
- .. note:: Limited version support
657-
658-
This setting is only supported for clusters running MongoDB
659-
versions:
654+
- This setting is only supported for clusters running MongoDB
655+
versions:
660656

661-
- 4.0.12 through 4.0.x, and
662-
663-
- 4.2.1 through 4.2.x.
657+
- 4.0.12 through 4.0.x, and
658+
- 4.2.1 through 4.2.x.
664659

665660
Maximum size (in GB) for the "lookaside (or cache
666661
overflow) table" file named :file:`WiredTigerLAS.wt`. The file no

0 commit comments

Comments
 (0)