January 2019
Intermediate to advanced
798 pages
20h 33m
English
We'll start by creating the certificates in a separate directory. For simplicity's sake, let's do this on A test host;, choose any directory where our certificate signing will happen.
$ mkdir zabbix_ca$ chmod 700 zabbix_ca$ cd zabbix_ca
Generate the root CA key:
$ openssl genrsa -aes256 -out zabbix_ca.key 4096
When prompted, enter a password twice to protect the key. Generate and self-sign the root certificate:
$ openssl req -x509 -new -key ...
Read now
Unlock full access