So, i installed mongochef a while ago, but i didn't work quite well, but now, there is the 4.4.2 and it works well, but, i'm using that version directly from the folder, and my installed version still the previous version, so i want to know how to uninstall the older version so i can try to install the new one.
Thank you very much for your time and help.
21 Answer
MongoChef is distributed as a .tar.gz file and not handled by the package manager.
Therefore you can just do a sudo rm -rf <path to old mongochef folder> and you'll be fine.
EDIT: To find the old mongochef folder, do a
sudo find / -name mongochef.sh -type fIt will output something like
/your/path/old-mongochef/bin/mongochef.sh
/another/path/new-mongochef/bin/mongochef.shOne is the old install, the other one is the new install. Be sure to identify correctly the old install folder.
Here your MongoChef install dir is /your/path/old-mongochef and you can remove it with
sudo rm -rf /your/path/old-mongochef 2