Skip to content

Commit d311b00

Browse files
author
Dave Cuthbert
authored
DOCSP-28270 BACKPORT (#2677)
1 parent bfab003 commit d311b00

File tree

5 files changed

+42
-0
lines changed

5 files changed

+42
-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

0 commit comments

Comments
 (0)