Skip to content

Commit ec86ed5

Browse files
authored
DOCSP-26450 Replacearviter-backup operations docs with refs (#2334)
1 parent 06f023d commit ec86ed5

13 files changed

+16
-16
lines changed

source/administration/production-notes.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -226,12 +226,12 @@ require access, such as application servers, monitoring services, and
226226
other MongoDB components.
227227

228228
.. important::
229-
By default, :doc:`authorization </core/authorization>` is not
229+
By default, :ref:`authorization <authorization>` is not
230230
enabled, and :binary:`~bin.mongod` assumes a trusted environment. Enable
231231
:setting:`~security.authorization` mode as needed. For more
232232
information on authentication mechanisms supported in MongoDB as
233-
well as authorization in MongoDB, see :doc:`/core/authentication`
234-
and :doc:`/core/authorization`.
233+
well as authorization in MongoDB, see :ref:`<authentication>`
234+
and :ref:`<authorization>`.
235235

236236
For additional information and considerations on security, refer to the
237237
documents in the :ref:`Security Section <security>`, specifically:

source/core/replica-set-architecture-three-members.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ A three member replica set with a two members that store data has:
6767
secondary can become primary in an :doc:`election
6868
</core/replica-set-elections>`.
6969

70-
- One :doc:`arbiter </core/replica-set-arbiter>`. The arbiter only
70+
- One :ref:`arbiter <replica-set-arbiter-configuration>`. The arbiter only
7171
votes in elections.
7272

7373
.. include:: /images/replica-set-primary-with-secondary-and-arbiter.rst

source/includes/fact-config-server-replica-set-restrictions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
The following restrictions apply to a replica set configuration when used
22
for config servers:
33

4-
- Must have zero :doc:`arbiters </core/replica-set-arbiter>`.
4+
- Must have zero :ref:`arbiters <replica-set-arbiter-configuration>`.
55

66
- Must have no :doc:`delayed members
77
</core/replica-set-delayed-member>`.

source/reference/command/fsyncUnlock.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Definition
3737

3838
:dbcommand:`fsyncUnlock` is an administrative operation. Typically
3939
you will use :dbcommand:`fsyncUnlock` following a database
40-
:doc:`backup operation </core/backups>`.
40+
:ref:`backup operation <backup-methods>`.
4141

4242
Syntax
4343
------

source/reference/command/logApplicationMessage.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Definition
1818
.. include:: /includes/note-audit-in-enterprise-only.rst
1919

2020
The :dbcommand:`logApplicationMessage` command allows users to post
21-
a custom message to the :doc:`audit </core/auditing>` log. If
21+
a custom message to the :ref:`audit <auditing>` log. If
2222
running with authorization, users must have :authrole:`clusterAdmin`
2323
role, or roles that inherit from :authrole:`clusterAdmin`, to run
2424
the command.

source/reference/command/rotateCertificates.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ information:
175175

176176
The following performs the same as above, but also writes a custom log
177177
message at rotation time to the :ref:`log file
178-
<log-message-destinations>` and :doc:`audit file </core/auditing>`:
178+
<log-message-destinations>` and :ref:`audit file <auditing>`:
179179

180180
.. code-block:: javascript
181181

source/reference/method/db.fsyncLock.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Definition
6363

6464
:method:`db.fsyncLock()` is an administrative command. You can use
6565
this operation to locks the database and create a window for
66-
:doc:`backup operations </core/backups>`.
66+
:ref:`backup operations <backup-methods>`.
6767

6868
Behavior
6969
--------

source/reference/method/db.fsyncUnlock.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Definition
3737

3838
:method:`db.fsyncUnlock()` is an administrative operation. Typically
3939
you will use :method:`db.fsyncUnlock()` following a database
40-
:doc:`backup operation </core/backups>`.
40+
:ref:`backup operation <backup-methods>`.
4141

4242
:method:`db.fsyncUnlock()` has the syntax:
4343

source/reference/method/db.rotateCertificates.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ information:
173173

174174
The following performs the same as above, but also writes a custom log
175175
message at rotation time to the :ref:`log file
176-
<log-message-destinations>` and :doc:`audit file </core/auditing>`:
176+
<log-message-destinations>` and :ref:`audit file <auditing>`:
177177

178178
.. code-block:: javascript
179179

source/replication.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,14 @@ members, see :doc:`/core/replica-set-secondary`.
7373
In some circumstances (such as you have a primary and a secondary but
7474
cost constraints prohibit adding another secondary), you may choose to
7575
add a :binary:`~bin.mongod` instance to a replica set as an
76-
:doc:`arbiter </core/replica-set-arbiter>`. An arbiter participates in
76+
:ref:`arbiter <replica-set-arbiter-configuration>`. An arbiter participates in
7777
:ref:`elections <replica-set-elections>` but does not hold data (i.e.
7878
does not provide data redundancy). For more information on arbiters,
7979
see :doc:`/core/replica-set-arbiter`.
8080

8181
.. include:: /images/replica-set-primary-with-secondary-and-arbiter.rst
8282

83-
An :doc:`arbiter </core/replica-set-arbiter>` will always be an arbiter
83+
An :ref:`arbiter <replica-set-arbiter-configuration>` will always be an arbiter
8484
whereas a :doc:`primary </core/replica-set-primary>` may step down and
8585
become a :doc:`secondary </core/replica-set-secondary>` and a
8686
:doc:`secondary </core/replica-set-secondary>` may become the primary

source/tutorial/add-replica-set-arbiter.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Add an Arbiter to Replica Set
1515
In some circumstances (such as you have a primary and a secondary but
1616
cost constraints prohibit adding another secondary), you may choose to
1717
add a :binary:`~bin.mongod` instance to a replica set as an
18-
:doc:`arbiter </core/replica-set-arbiter>` to vote in elections.
18+
:ref:`arbiter <replica-set-arbiter-configuration>` to vote in elections.
1919

2020
Arbiters are :binary:`~bin.mongod` instances that are part of a
2121
:term:`replica set` but do not hold data (i.e. do not provide data

source/tutorial/rename-unsharded-replica-set.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Prerequisites
2525
is for unsharded replica sets only.
2626

2727
- Before renaming a replica set, perform a full
28-
:doc:`backup of your MongoDB deployment </core/backups>`.
28+
:ref:`backup of your MongoDB deployment <backup-methods>`.
2929

3030
Procedure
3131
---------

source/tutorial/rotate-log-files.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ When reporting activity data to a log file, by default, MongoDB only
2020
rotates logs in response to the :dbcommand:`logRotate` command, or when
2121
the :binary:`~bin.mongod` or :binary:`~bin.mongos` process receives a
2222
``SIGUSR1`` signal from the operating system. Both server logs and
23-
:doc:`audit logs </core/auditing>` may be rotated with the
23+
:ref:`audit logs <auditing>` may be rotated with the
2424
:dbcommand:`logRotate` command, either together or independently.
2525

2626
MongoDB's standard log rotation approach archives the current

0 commit comments

Comments
 (0)