File tree Expand file tree Collapse file tree 5 files changed +42
-0
lines changed Expand file tree Collapse file tree 5 files changed +42
-0
lines changed Original file line number Diff line number Diff line change
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
+
Original file line number Diff line number Diff line change @@ -103,6 +103,11 @@ See |installationdoc| for more information.
103
103
Upgrade Process
104
104
---------------
105
105
106
+ .. warning::
107
+
108
+ .. |broken-version| replace:: 4.4.19
109
+ .. include:: /includes/release-notes/warning-text-server-upgrade.rst
110
+
106
111
You can upgrade from MongoDB |oldversion| to |newversion| using a
107
112
"rolling" upgrade to minimize downtime by upgrading the members
108
113
individually while the other members are available.
Original file line number Diff line number Diff line change @@ -115,6 +115,11 @@ See |installationdoc| for more information.
115
115
Upgrade Process
116
116
---------------
117
117
118
+ .. warning::
119
+
120
+ .. |broken-version| replace:: 4.4.19
121
+ .. include:: /includes/release-notes/warning-text-server-upgrade.rst
122
+
118
123
.. include:: /includes/steps/4.4-upgrade-sharded-cluster.rst
119
124
120
125
Additional Upgrade Procedures
Original file line number Diff line number Diff line change @@ -93,6 +93,11 @@ See |installationdoc| for more information.
93
93
Upgrade Process
94
94
---------------
95
95
96
+ .. warning::
97
+
98
+ .. |broken-version| replace:: 4.4.19
99
+ .. include:: /includes/release-notes/warning-text-server-upgrade.rst
100
+
96
101
.. include:: /includes/steps/4.4-upgrade-standalone.rst
97
102
98
103
Additional Upgrade Procedures
Original file line number Diff line number Diff line change @@ -18,6 +18,12 @@ Patch Releases
18
18
4.4.19 - Feb 27, 2023
19
19
~~~~~~~~~~~~~~~~~~~~~
20
20
21
+ .. warning::
22
+
23
+ .. |broken-version| replace:: 4.4.19
24
+ .. include:: /includes/release-notes/warning-text-server-upgrade.rst
25
+
26
+
21
27
Issues fixed:
22
28
23
29
- :issue:`SERVER-68122` Investigate replicating the collection
You can’t perform that action at this time.
0 commit comments