Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Completely uninstall confluent on linux

I want to completely uninstall confluent. I installed it following the instructions on their site. There were three simple steps:

$ wget -qO - https://packages.confluent.io/deb/4.0/archive.key | sudo apt-key add -

$ sudo add-apt-repository "deb [arch=amd64] https://packages.confluent.io/deb/4.0 stable main"

$ sudo apt-get update && sudo apt-get install confluent-platform-oss-2.11

Now how can I remove/uninstall it. I cant find anything related to it.

like image 306
el323 Avatar asked Nov 07 '22 10:11

el323


1 Answers

This will remove all installed packages from confluent.

sudo apt-get remove 'confluent*'

Note that you have to use apt-get, apt won't work. You can use the option --dry-run to see what would be deleted without performing it.

like image 156
Sadman Sakib Avatar answered Nov 15 '22 11:11

Sadman Sakib