Can't remove, purge, unistall mongodb from debian
Asked Answered
P

2

15

I'm trying to reinstall it, because it has problems. For example, I can't install Chromium because mongodb-org-server is not configured. But I can't even remove it for the same reason.

apt-get autoremove --purge mongodb

Or:

apt-get purge mongodb

Or:

apt-get remove --purge mongodb

All end in the same way:

 dpkg: error processing package mongodb-org-server (--configure):
  subprocess installed post-installation script returned error exit status 102
 Errors were encountered while processing:
  mongodb-org-server
 E: Sub-process /usr/bin/dpkg returned an error code (1)

Some data about my machine from hostnamectl:

  Operating System: Debian GNU/Linux 8 (jessie)
  Kernel: Linux 3.14-2-amd64
  Architecture: x86_64

How can I fix this?

Updates: things I tried/I'm trying

apt-get install -f
Reading package lists... Done
Building dependency tree       
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 973 not upgraded.
1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Setting up mongodb-org-server (3.0.2) ...
dpkg: error processing package mongodb-org-server (--configure):
 subprocess installed post-installation script returned error exit status 102
Errors were encountered while processing:
 mongodb-org-server
Protestant answered 7/6, 2015 at 8:47 Comment(4)
There were broken dependencies during a previous install. Try apt-get install -f or dpkg --configure -aCandide
Thanks for the answer. The problem seems to be deeper than that (a lot of people are having issues with mongodb + debian). The first command gives the same error, the second has no output.Protestant
973 not upgraded? It seems you had dist-upgrade that didn't finish?Candide
what is mongodb-org-server? there is no such package in Debian. It seems to have a broken post-remove script.Mood
B
36

To avoid that sort of problems you should install software only from native Debian repositories. Unfortunately it is not unusual when sloppy/incompetent 3rd party packages are responsible for such troubles.

To recover try removing file /var/lib/dpkg/info/mongodb-org-server.postinst before attempting to apt-get purge mongodb.

Burl answered 25/8, 2015 at 2:55 Comment(5)
Thanks a lot. This almost helped. My problem: I've ran into dir: cd /var/lib/dpkg/info/, checked what I have on mongo ls | grep mongo, and remove all mongo files rm mongo*. After I've ran apt-get purge mongodb and I got success.Mohammed
Above comment should be the question answer imo.Deland
This is so frustrating. I was stuck on uninstall problem for so long & luckily found this answer. It worked like charm. Though my return status code was 5. Does this mean anything?Xeniaxeno
Lazyexpert's comment also was the key for me. The main lesson I learned here is that MongoDB is pain and their website gives crap advice.Gipon
In my case, it was really similar but the file to remove was /var/lib/dpkg/info/mongodb-org-server.prermHarleigh
E
7

Remove all mongodb file inside

/var/lib/dpkg/info/mongodb

And then do

sudo apt purge mongodb-org*

Answer credits to: Lazyexpert

Enugu answered 25/2, 2019 at 9:10 Comment(0)

© 2022 - 2025 — McMap. All rights reserved.