Link to home
Start Free TrialLog in
Avatar of needs needs
needs needs

asked on

New SSL certificate on apache

I have a Ubuntu apache2 server .I bought a ssl wildcard certificate from online .They send my new certificates zip format.
I have CERT.CABUNDLE and CERTIFICATE.CRT files in this zip.

before i used selfsigned certificate on my apache server.

please can you explain ,how can i install these new certificates on my apache server ?

Thanks
Avatar of Jim Riddles
Jim Riddles
Flag of United States of America image

From where did you obtain the SSL certificates?  Typically, each provider will have a help page that lists the steps necessary to install the certificate in IIS, and Apache, at the least.
Avatar of needs needs
needs needs

ASKER

from Comodo
i think ,i need basic procedure  to learn ,
Extract all of the contents of the ZIP file that was sent to you and copy/move them to your server. The extracted contents will typically be named: yourDomainName.crt and yourDomainName.ca-bundle

Move all of the certificate related files to their appropriate directories.

A typical setup:

Move the Private Key that was generated earlier to the ssl.key directory, which is typically found in /etc/ssl/. This must be a directory which only Apache can access.

what they mean PRIVATE KEY ?
The private key is the key you generated when generating your CSR.
can i generade CRS again ,how?
No, the CSR is what was generated to begin the process of obtaining your SSL certificate.  If you can't locate it, you may be able to contact Comodo support to see if they can help you with it.
Thanks Jim

I have one more question. I have one more linux debian server (for ftp). I also use there my wildcard cert. can i use its Private key in the other apache server? Private keys are the same on all servers isn it?
ASKER CERTIFIED SOLUTION
Avatar of Jim Riddles
Jim Riddles
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
tomorrow i ll try : can you please check for me?


I i will copy files  yourDomainName.crt and yourDomainName.ca-bundle and Privatekey.txt to /etc/apache2/certs/


apache restart


Move all of the certificate related files to their appropriate directories.



A typical setup:

Move the Private Key that was generated earlier to the ssl.key directory, which is typically found in /etc/ssl/. This must be a directory which only Apache can access.

Move the yourDomainName.crt and yourDomainName.ca-bundle to the ssl.crt directory, which is typically found in the /etc/ssl/ directory.
thank you so much