Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • generic_penguin
    Participant

    Hi Sam. Long time no see

    Wait till you need to do this in 10.6, it has changed again

    I suggest having a read of the “Advanced_Server_Admin_v10.6.pdf” available on Apples website about ssl certificates. However, it does not tell you how to backup and restore your certificates

    Under 10.5 server

    The certificates lived in /etc/certificates

    In this case

    domainname.com.au.chcrt
    domainname.com.au.crt
    domainname.com.au.crtkey
    domainname.com.au.key

    The ones you need being

    * domainname.com.au.crt
    * domainname.com.au.key

    You can import the certificates on a 10.5 or 10.6 server under the Server Admin select import and select the .crt file for the certifcate and .key file for the private key.

    So anyone wishing to backup or restore there SSL certificates would simply backup /etc/certificates/

    However in 10.6 server

    The certificates still live in /etc/certificates but the private key is now encrypted and the file format changed to .pem

    In this case

    domainname.com.au.*************************************.cert.pem
    domainname.com.au.*************************************.chain.pem
    domainname.com.au.*************************************.concat.pem
    domainname.com.au.*************************************.key.pem

    If you were backing up the server you would need to copy the

    * /etc/certificates/
    * /Library/Keychains/System.keychain : which controls the password to decrypt the private key

    The private key “domainname.com.au.*************************************.key.pem” is encrypted by the OSX Server admin on import / creation time

    To retore the ssl certificate you need to find the encryption password key
    Lauch the keychain Access program and search for “Name : Mac OS X Server certificate management, Kind : application password”
    If you have multiple entires in here select the one with the Date Modified being the day you imported the certificate
    Double click and select “Show password” and enter the password of the server
    This will give you the password to decrypt the private key. It should be in the form of numbers and letters as ********-****-****-****-************

    You can now import the SSL certificate onto another server whether that be a backup server in case or primary failure or your new server to replace your old one

    You do this in the Server Admin program under certificates. Select the + button and import

    * domainname.com.au.*************************************.cert.pem, which is the .crt file “certificate”
    * domainname.com.au.*************************************.key.pem, which is the .key file “private key”

    Drag the domainname.com.au.*************************************.cert.pem and domainname.com.au.*************************************.key.pem. “the encrypted private key”
    It will ask you for a password, enter the password found above in the keychain access program

    For other 3rd party application such as Kerio Mail server you may want to use this key as well, to do is it needs to be decrypted

    To decrypt the ssl key you will need to be in the terminal {sub domainname.com.au.************************************* for your certificate

    $ sudo openssl rsa -in /etc/certificates/domainname.com.au.*************************************.key.pem -out /etc/certificate/key-decrypt.pem

    Your decrypted private key is now found at /etc/certificate/key-decrypt.pem

    You can now use this decrypted private key with your certificate key to import into another 3rd party program on that server such as Kerio Mail or you can use this to import into the Server Admin without asking for your password key

    NOTE : For those that have a singed certificate that is not signed by a direct root authority you will need to also copy their intermediate chain certificate and import that into your keychain on the new server. Generally speaking you really don’t need to back this one up this intermediate chain certificate is easily available / downloadable on the website of the signer. Example godaddy’s can be found at https://certs.godaddy.com/anonymous/repository.seam

Viewing 1 post (of 1 total)