martedì 29 ottobre 2019

How to remove openldap in fedora 30

I messed up my config and I wanted to remove openldap to start from a clean env. So here what I did:

systemctl stop slapd
systemctl disable slapd
yum -y remove openldap-servers openldap-clients
rm -rf /var/lib/ldap
userdel ldap
rm -rf /etc/openldap

..that's it. This post is for the next time to remember this shit.

Nessun commento:

How to deploy Podman images to OpenShift Container Platform (CRC on localhost)

I have a microservice on localhost and I want to deploy its Podman image on OCP, which I am running using CRC on localhost.       1. Get the...