Hi all, <br><br>The SSL Howto on the wiki doesn't really cover a procedure for what to do when your root CA has to be renewed, along with your server certs. <br><br>I have 3 servers whose server certs are all signed with our own root CA, but that root CA is expiring, and needs to be replaced. Presumably this means I also need to replace the server certs, since they were signed with this expiring root CA. 
<br><br>What I was able to do was just blow away /opt/fedora-ds/alias/*.db, and then run: <br><br>###### CREATE NEW *.db FILES ########<br>/opt/fedora-ds/share/bin/certutil -N -d /opt/fedora-ds/alias -P slapd-ldap- <br><br>
###### INSTALL NEW ROOT CA ########<br>/opt/fedora-ds/share/bin/certutil -A -n &quot;My Dept. Root CA&quot; -P slapd-ldap- -d /opt/fedora-ds/alias -t &quot;CT,,&quot; -a -i ./cacert.pem<br><br>###### CREATE NEW SERVER CERT REQUEST #######
<br>/opt/fedora-ds/share/bin/certutil -R -d /opt/fedora-ds/alias -a -P slapd-ldap- -s &quot;cn=<a href="http://ldap.my-domain.com">ldap.my-domain.com</a>&quot; -o /tmp/csr.der.txt -g 1024<br><br>###### SIGN THE NEW SERVER CERT REQUEST ########
<br>openssl ca -config openssl.cnf -policy policy_anything -out certs/ldapcert.pem -infiles csr.der.txt<br><br>###### INSTALL NEW SERVER CERT #########<br>/opt/fedora-ds/shared/bin/certutil -A -d /opt/fedora-ds/alias -n &quot;ldap-server-cert&quot; -P slapd-ldap- -t u,u,u -a -i /opt/fedora-ds/alias/ldapcert.pem
<br><br>At this point, my server starts up just fine and all appears to be well, but it doesn't seem like it should be absolutely necessary to start over from scratch on each server when our root CA expires. Can someone detail a shorter method to replace expired root CAs *and* server certificates? 
<br><br>thanks. <br>brian.<br>