티스토리 뷰
Mac OS X
Add
Use command:
sudo security add-trusted-cert -d -r trustRoot -k /Library/Keychains/System.keychain ~/new-root-certificate.crt
Remove
Use command:
sudo security delete-certificate -c “<name of existing certificate>”
Windows
Add
Use command:
certutil -addstore -f “ROOT” new-root-certificate.crt
Remove
Use command:
certutil -delstore “ROOT” serial-number-hex
Linux (Ubuntu, Debian)
Add
- Copy your CA to dir /usr/local/share/ca-certificates/
- Use command:
sudo cp foo.crt /usr/local/share/ca-certificates/foo.crt
- Update the CA store:
sudo update-ca-certificates
Remove
- Remove your CA.
- Update the CA store:
sudo update-ca-certificates –fresh
Restart Kerio Connect to reload the certificates in the 32-bit versions or Debian 7.
Linux (CentOs 6)
Add
- Install the ca-certificates package:
yum install ca-certificates
- Enable the dynamic CA configuration feature:
update-ca-trust force-enable
- Add it as a new file to /etc/pki/ca-trust/source/anchors/:
cp foo.crt /etc/pki/ca-trust/source/anchors/
- Use command:
update-ca-trust extract
Restart Kerio Connect to reload the certificates in the 32-bit version.
Linux (CentOs 5)
Add
Append your trusted certificate to file /etc/pki/tls/certs/ca-bundle.crt
cat foo.crt >> /etc/pki/tls/certs/ca-bundle.crt
Restart Kerio Connect to reload the certificates in the 32-bit version.
'찾아 본 자료' 카테고리의 다른 글
signal 정리 (0) | 2020.03.03 |
---|---|
zeroMQ install (0) | 2019.11.01 |
배달의민족] 대규모 채용 기념 할인쿠폰 (0) | 2018.05.05 |
openssl 인증서 정보 확인 (0) | 2018.04.04 |
MySQL 컴파일 설치 (0) | 2018.03.19 |