-
I'm pulling my hair for two days and nothing seems to be working correctly - I believe I'm missing something small. The core of the issue is that after following the intermediate CA (medium way) tutorial
My CA config seems to contain all elements (i.e. intermediate CA and no root key):
How come the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
On your If you replaced the root certificate you will need to bootstrap again your environment, to do this you need to first get the fingerprint of the new root_ca.crt, you can do this with Then to re-bootstrap your step ca bootstrap --ca-url https://ca-url:9000 --fingerprint xyz... At this moment |
Beta Was this translation helpful? Give feedback.
On your
guest
host, you need to have the actual root ca in$STEPPATH/certs/root_ca.crt
, by default it would be~/.step/certs/root_ca.crt
.If you replaced the root certificate you will need to bootstrap again your environment, to do this you need to first get the fingerprint of the new root_ca.crt, you can do this with
step certificate fingerprint root_ca.crt
Then to re-bootstrap your
guest
host you just do:At this moment
step
will download the root fromhttps://ca-url:9000/1.0/root/xyz...
and validate the fingerprint with the one you provided. This is how you trust the new generated CA.