In this article we will cover the steps to uninstall or remove Webmin software on Linux CentOS and Linux (RHEL)
We will describe here three different ways to remove webmin ,But the choice of uninstallation depends upon how the installation has been done in the beginning.
1. Stop Webmin :
service webmin stop Stopping Webmin server in /usr/libexec/webmin
2. Check Webmin version that has been installed and configured :
rpm -qa | grep webmin webmin-1.760-1.noarch
3. Remove webmin using “rpm -e” command:
# rpm -e webmin-1.760-1.noarch
4. Remove using “yum remove” command:
yum remove webmin
5. Remove using “/etc/webmin/uninstall.sh” command:
/etc/webmin/uninstall.sh
Done.