SSL

DOCS

How to prepare TLS certificates for use with the Splunk platformarrow-up-right

Configure Splunk indexing and forwarding to use TLS certificatesarrow-up-right

Configure TLS certificates for inter-Splunk communicationarrow-up-right

Configure Splunk Web to use TLS certificatesarrow-up-right

Test and troubleshoot TLS connectionsarrow-up-right

Default certificate renewal

WEB

# export LD_LIBRARY_PATH=/opt/splunk/lib/:$LD_LIBRARY_PATH
mkdir /opt/splunk/etc/auth/mycerts
cd /opt/splunk/etc/auth/mycerts

/opt/splunk/bin/openssl genrsa -aes256 -out myServerPrivateKey.key 2048
/opt/splunk/bin/openssl req -new -key myServerPrivateKey.key -out myServerCertificate.csr
/opt/splunk/bin/openssl x509 -req -in myServerCertificate.csr -sha512 -signkey myServerPrivateKey.key -CAcreateserial -out myServerCertificate.pem -days 3650
chown -R splunk:splunk /opt/splunk

nano /opt/splunk/etc/system/local/web.conf

SERVER

Linkarrow-up-right

Last updated