Skip to content

Commit 193caa2

Browse files
DOCSP-42444 updated troubleshooting page with podman error (#708)
* updated troubleshooting page with podman error
1 parent 546d488 commit 193caa2

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

source/atlas-cli-changelog.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@ Released 25 July 2024
9797
and :compass:`Compass </>` on Windows.
9898
- Updates the :ref:`atlas-deployments-setup` command to always use the
9999
latest image when creating a new local deployment.
100+
- Drops support for MongoDB 6.0 for local deployments.
101+
- Drops support for local deployments created with earlier versions of the {+atlas-cli+}.
100102
- Fixes a bug in the :ref:`atlas-deployments-setup` command where the
101103
{+atlas-cli+} deletes an existing local deployment when you run this
102104
command twice for the same deployment.

source/troubleshooting.txt

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,38 @@ Alert Config Not Deleted
201201
This error might appear if the {+atlas-cli+} can't delete the alert
202202
configuration specified by the ID.
203203

204+
podman not found
205+
~~~~~~~~~~~~~~~~
206+
207+
This error appears if you try to run an ``atlas deployments`` command
208+
inside our official docker container, ``mongodb/atlas`` in v1.26 or
209+
later. Instead, follow the steps decribed in
210+
:ref:`atlas-cli-deploy-docker`.
211+
212+
You should inspect past containers in your {+cluster+} with the
213+
following command:
214+
215+
.. code-block::
216+
217+
podman ps -a
218+
219+
Then, remove any that start with ``mongod`` or ``mongot`` with the
220+
following command:
221+
222+
.. code-block::
223+
224+
podman container rm -f -v <name or ID>
225+
226+
.. tip::
227+
228+
You can safely uninstall podman if you're on MacOS.
229+
230+
If you installed podman with homebrew, use this command to uninstall:
231+
232+
.. code-block::
233+
234+
brew uninstall podman
235+
204236
Configuration Errors
205237
--------------------
206238

0 commit comments

Comments
 (0)