Certification Authority

From Support

Jump to: navigation, search

A Certification Authority(CA) is an entity that issues SSL Certificates. Netsoc runs a CA so that you only have to trust one cert to access our various encrypted services. These include phpMyAdmin and IMAPS.

Trusting the Netsoc CA

Creating a Cert

This page contains Technical Information. This is intended for reference only, and should not change without admin intervention. Other users are asked not to edit this page.

To create a new cert for service:

cd /etc/NetsocCA
openssl req -new -nodes -out service.pem -keyout service.pem -days 730 -newkey rsa:2048
openssl ca -days 730 -out service.crt -infiles service.pem
openssl rsa < service.pem > service.key         #RSA private key
openssl rsa < service.pem -pubout > service.pub #RSA public key
mv service.pem private #Keep a copy

See Also

Personal tools