Export Step CA to AD CS #973
-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @FinchRelia, we don't have much ADCS experience, so I can only direct you to a thread in stackoverflow with the same error. The most voted answer, with 1 vote, says this:
So I guess you need to create a certificate request in AD CS, and we need to sign it. How do you create a certificate request in AD CS, no idea, but there're results on Google about that. After that, you will have to use step certificate sign --profile intermediate-ca adcs.csr ~/.step/certs/root_ca.crt ~/.step/secrets/root_ca_key That will print the simplest intermediate certificate from sign by the root ca. If you need to add specific extensions, you can do it with the You can try to use that intermediate, and see if that one works. |
Beta Was this translation helpful? Give feedback.
Hi @FinchRelia, we don't have much ADCS experience, so I can only direct you to a thread in stackoverflow with the same error.
The most voted answer, with 1 vote, says this:
So I guess you need to create a certificate request in AD CS, and we need to sign it. How do you create a certificate request in AD CS, no idea, but there're results on Google about that.
After that, you will have to use
step
, also known asstep-cli
on some systems, to sign that CSR withstep-ca
root. Assuming you're using files for your key, the command would be someth…