Replies: 1 comment 4 replies
-
Hi @Nikatik, what commands are you trying? If it's
The certificates present in the certificate.crt or given by the servers should include both the server certificate and the intermediate certificate. Without that, it won't be able to build the full chain until the root. You can also inspect the full chain with
|
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
You have 2 different ways for validate selfsigned certs or certs with unknown issuer.
--root and --unsecure ;-)
But if you use mysql with tls, they are non-working.
too many positional arguments
So, my case.
I have one offline root ca and two intermediate ca_s: first is offline for myself and second for acme clients by step-ca. I issue cert for mysql from first ica, then configure second ica to work with this mysql. Root cert is installed into system and it is root cert for step-ca (second ica). But step-ca can't validate mysql, because
certificate signed by unknown authority
...WTF? How can I avoid this trap?
Beta Was this translation helpful? Give feedback.
All reactions