How to unistall kerberos on CentOS
I am experimenting with Kerberos and messed up the installation. When I do this, there are too many configs in the default dictionaries. I tried many different ways to remove it, but not like this:
[root @ kdc1 krb5-1.9] # cd src / [root @ kdc1 src] # remove make: *** There is no rule to remove the target. Stop.
so how can i remove Kerberos?
source to share
First, you need to remove the packages you have installed for kerberos (version 5 we are talking about)
- yum remove krb5-server
- yum remove krb5-libs
- yum remove workstation krb5
This will not delete the folders. You have to remove them manually. So,
- rm -rf / var / kerberos /
- rm / etc / krb5.conf
- rm -rf / usr / lib64 / krb5
And you can install the packages again.
Note: I came here looking for an answer to the same question you asked. However, I solved this problem and I would like to talk about solving this problem. I may be late, but for the future, this may help others.
source to share