SSL
DOCS
How to prepare TLS certificates for use with the Splunk platform
Configure Splunk indexing and forwarding to use TLS certificates
Configure TLS certificates for inter-Splunk communication
Configure Splunk Web to use TLS certificates
Test and troubleshoot TLS connections
Default certificate renewal
WEB
nano /opt/splunk/etc/system/local/web.conf
SERVER
Split a .pfx File into .pem and .key Files Using OpenSSL
The following command will generate a private key file without a password from your .pfx file (requires password):
openssl pkcs12 -in certificate.pfx -out privateKey.key -nocerts -nodes
The following command will generate a .pem certificate file from your .pfx file which will include any intermediate and root certificates that may be included in the .pfx file. (requires password):
openssl pkcs12 -in certificate.pfx -out certificate.pem -nokeys -clcerts
/opt/splunk/etc/auth
Last updated