This content has been marked as final.
Show 1 reply
-
1. Re: Tableau Server, SSL, & GoDaddy certificates
Zach Leber Nov 27, 2018 6:52 AM (in response to gareth.crawford)Hi Gareth,
Tableau Server SSL requires one key file (.key), one certificate (.crt), and sometimes a certificate chain file (also .crt extension). You may not have the private key file you need.
Configure SSL for External HTTP Traffic to and from Tableau Server - Tableau
You can view the encrypted file contents directly in a text editor, look for either
-----BEGIN CERTIFICATE-----
or
-----BEGIN RSA PRIVATE KEY-----
You can also use the openssl command available on many OSs to check the files.
openssl x509 -in certificate.crt -text -noout
openssl rsa -in privateKey.key -check
Regards,
Zach