Fault tolerance #756
-
If the step-ca server were to fail, what are the implications for internal PKI? What steps can be implemented to mitigate this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
You would probably have to be more specific on how/where the step-ca server is failing, but in general, if the server can be brought back up with the same root certificates and As long as you have access to the root certificate, you can reproduce almost everything in Some things that would require reconfiguration are if the The minimum things you should backup are the root certificate and key, the If there are any specific parts you worry that can break, or you would want a more "no-jargon" explanation, let me know. Edit: Oh, I forgot about |
Beta Was this translation helpful? Give feedback.
You would probably have to be more specific on how/where the step-ca server is failing, but in general, if the server can be brought back up with the same root certificates and
ca.json
secrets, everything would be back to normal.As long as you have access to the root certificate, you can reproduce almost everything in
step-ca
usingopenssl
, so on that front, there is nothing much to worry about. You would also probably want to backup the root certificate offline, or even completely isolate it and use a manually generated long-term intermediate certificate instead of the root one on the machines.Some things that would require reconfiguration are if the
ca.json
secrets are damaged. Howeve…