Rancher uses etcd as datastore. When using the Single Node Install, the embedded etcd will be used. The persistent data will be stored in /var/lib/rancher inside the container. You can bind mount a host volume to this location to preserve data on the host it is running on.
Rancher uses etcd as datastore. When using the Single Node Install, the embedded etcd is be used. The persistent data is at the following path in the container: /var/lib/rancher. You can bind mount a host volume to this location to preserve data on the host it is running on.
Command
diff --git a/layouts/shortcodes/ssl_faq.html b/layouts/shortcodes/ssl_faq.html index fdeae0f9faa..5d8d43d4623 100644 --- a/layouts/shortcodes/ssl_faq.html +++ b/layouts/shortcodes/ssl_faq.html @@ -1,4 +1,4 @@ -You can recognize the PEM format by the following traits:
To encode your certificates in base64:
+ +FILENAME with the name of your certificate.
+ +# MacOS +cat FILENAME | base64 +# Linux +cat FILENAME | base64 -w0 +# Windows +certutil -encode FILENAME FILENAME.base64 ++
The order of adding certificates is as follows:
@@ -30,7 +48,7 @@ VWQqljhfacYPgp8KJUJENQ9h5hZ2nSCrI+W00Jcw4QcEdCI8HL5wmg== -----END CERTIFICATE----- -You can validate the certificate chain by using the openssl binary. If the output of the command (see the command example below) ends with Verify return code: 0 (ok), your certificate chain is valid. The ca.pem file must be the same as you added to the rancher/rancher container. When using a certificate signed by a recognized Certificate Authority, you can omit the -CAfile parameter.