OpenSSL as a CA without touching the certs/crl/index/etc environment
I don’t know of any “don’t bother” options, but here is how you can setup a quick demo CA: #!/bin/bash CAROOT=/path/to/ca mkdir -p ${CAROOT}/ca.db.certs # Signed certificates storage touch ${CAROOT}/ca.db.index # Index of signed certificates echo 01 > ${CAROOT}/ca.db.serial # Next (sequential) serial number # Configuration cat>${CAROOT}/ca.conf<<‘EOF’ [ ca ] default_ca = ca_default [ ca_default … Read more