mirror of
https://github.com/rancher/rancher-docs.git
synced 2026-09-26 21:18:04 +00:00
Add HA troubleshooting for base64 certificates
This commit is contained in:
committed by
Denise
parent
c896a47d30
commit
c7506a1617
@@ -35,6 +35,25 @@ certutil -encode FILENAME FILENAME.base64
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
<h3 id="base64">How Can I Verify My Generated base64 String For The Certificates?</h3>
|
||||
|
||||
<p>To decode your certificates in base64:</p>
|
||||
|
||||
<ol>
|
||||
<li>Copy the generated base64 string.</li>
|
||||
<li>Run one of the following commands. Replace <code>YOUR_BASE64_STRING</code> with the previously copied base64 string.
|
||||
<pre style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4">
|
||||
# MacOS
|
||||
echo YOUR_BASE64_STRING | base64 -D
|
||||
# Linux
|
||||
echo YOUR_BASE64_STRING | base64 -d
|
||||
# Windows
|
||||
certutil -decode FILENAME.base64 FILENAME.verify
|
||||
</pre>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
|
||||
<h3 id="cert-order">What is the Order of Certificates if I Want to Add My Intermediate(s)?</h3>
|
||||
|
||||
<p>The order of adding certificates is as follows:</p>
|
||||
|
||||
Reference in New Issue
Block a user