"step certificate create" does not update the database ? #1334
-
Hello, When I'm using "step certificate create" to create a certificate (using JWK then), step does not seems to insert the certificate in the database. To see what is in the DB I'm using listcerts.go. Am I missing something (almost certain I am...) ? Thanks! Example of command used :
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
To generate X.509 certificates on the CA you need to use |
Beta Was this translation helpful? Give feedback.
-
Thank you, I knew I was missing something, my bad. |
Beta Was this translation helpful? Give feedback.
step certificate create
does not talk tostep-ca
. That command is to create certificates 100% offline, and it doesn't use a JWK provisioner at all. It signs the certificates with the--ca
and--ca-key
you provide.To generate X.509 certificates on the CA you need to use
step ca certificate
orstep ca sign
.