Skip to content

Commit b53deeb

Browse files
author
Dave Cuthbert
authored
DOCSP-28270 BACKPORT (#2676)
* DOCSP-28270 BACKPORT * Build error
1 parent 06686b0 commit b53deeb

10 files changed

+65
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
If you upgrade an existing instance of MongoDB to MongoDB
2+
|broken-version|, that instance may fail to start if ``fork: true`` is
3+
set in the ``mongod.conf`` file.
4+
5+
The upgrade issue affects all MongoDB instances that use ``.deb`` or
6+
``.rpm`` installation packages. Installations that use the tarball
7+
(``.tgz``) release or other package types are not affected. For more
8+
information, see :issue:`SERVER-74345`.
9+
10+
To remove the ``fork: true`` setting, run these commands from a system
11+
terminal:
12+
13+
.. code-block:: shell
14+
15+
systemctl stop mongod.service
16+
sed -i.bak '/fork: true/d' /etc/mongod.conf
17+
systemctl start mongod.service
18+
19+
The second ``systemctl`` command starts the upgraded instance after the
20+
setting is removed.
21+

source/release-notes/4.4-upgrade-replica-set.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,11 @@ See |installationdoc| for more information.
103103
Upgrade Process
104104
---------------
105105

106+
.. warning::
107+
108+
.. |broken-version| replace:: 4.4.19
109+
.. include:: /includes/release-notes/warning-text-server-upgrade.rst
110+
106111
You can upgrade from MongoDB |oldversion| to |newversion| using a
107112
"rolling" upgrade to minimize downtime by upgrading the members
108113
individually while the other members are available.

source/release-notes/4.4-upgrade-sharded-cluster.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,11 @@ See |installationdoc| for more information.
115115
Upgrade Process
116116
---------------
117117

118+
.. warning::
119+
120+
.. |broken-version| replace:: 4.4.19
121+
.. include:: /includes/release-notes/warning-text-server-upgrade.rst
122+
118123
.. include:: /includes/steps/4.4-upgrade-sharded-cluster.rst
119124

120125
Additional Upgrade Procedures

source/release-notes/4.4-upgrade-standalone.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,11 @@ See |installationdoc| for more information.
9393
Upgrade Process
9494
---------------
9595

96+
.. warning::
97+
98+
.. |broken-version| replace:: 4.4.19
99+
.. include:: /includes/release-notes/warning-text-server-upgrade.rst
100+
96101
.. include:: /includes/steps/4.4-upgrade-standalone.rst
97102

98103
Additional Upgrade Procedures

source/release-notes/4.4.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ Patch Releases
1818
4.4.19 - Feb 27, 2023
1919
~~~~~~~~~~~~~~~~~~~~~
2020

21+
.. warning::
22+
23+
.. |broken-version| replace:: 4.4.19
24+
.. include:: /includes/release-notes/warning-text-server-upgrade.rst
25+
26+
2127
Issues fixed:
2228

2329
- :issue:`SERVER-68122` Investigate replicating the collection

source/release-notes/5.0-upgrade-replica-set.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,11 @@ See |installationdoc| for more information.
9999
Upgrade Process
100100
---------------
101101

102+
.. warning::
103+
104+
.. |broken-version| replace:: 5.0.15
105+
.. include:: /includes/release-notes/warning-text-server-upgrade.rst
106+
102107
You can upgrade from MongoDB |oldversion| to |newversion| using a
103108
"rolling" upgrade to minimize downtime by upgrading the members
104109
individually while the other members are available.

source/release-notes/5.0-upgrade-sharded-cluster.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,11 @@ See |installationdoc| for more information.
111111
Upgrade Process
112112
---------------
113113

114+
.. warning::
115+
116+
.. |broken-version| replace:: 5.0.15
117+
.. include:: /includes/release-notes/warning-text-server-upgrade.rst
118+
114119
.. include:: /includes/steps/5.0-upgrade-sharded-cluster.rst
115120

116121
Additional Upgrade Procedures

source/release-notes/5.0-upgrade-standalone.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,11 @@ See |installationdoc| for more information.
8585
Upgrade Process
8686
---------------
8787

88+
.. warning::
89+
90+
.. |broken-version| replace:: 5.0.15
91+
.. include:: /includes/release-notes/warning-text-server-upgrade.rst
92+
8893
.. include:: /includes/steps/5.0-upgrade-standalone.rst
8994

9095
Additional Upgrade Procedures

source/release-notes/5.0.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ Patch Releases
2222
5.0.15 - Feb 27, 2023
2323
~~~~~~~~~~~~~~~~~~~~~
2424

25+
.. warning::
26+
27+
.. |broken-version| replace:: 5.0.15
28+
.. include:: /includes/release-notes/warning-text-server-upgrade.rst
29+
30+
2531
- :issue:`SERVER-54900` Blocking networking calls can delay sync-source resolution indefinitely
2632
- :issue:`SERVER-72416` The find and findAndModify projection code does not honor the collection level collation
2733
- :issue:`SERVER-71759` dataSize command doesn't yield

source/tutorial/perform-maintence-on-replica-set-members.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.. _perform-maint-on-replica-set:
2+
13
==========================================
24
Perform Maintenance on Replica Set Members
35
==========================================

0 commit comments

Comments
 (0)