<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How make the https splunk web load with self-signed certificate? in Security</title>
    <link>https://community.splunk.com/t5/Security/How-to-make-the-https-splunk-web-load-with-self-signed/m-p/630616#M16581</link>
    <description>&lt;P&gt;Pretty dumb mistake. I have removed my root CA in the server.conf and I edited the password back to the default value "password".&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;[sslConfig]&lt;BR /&gt;sslRootCAPath = /opt/splunk/etc/auth/mycerts/CertificateAuthorityCertificate.pem&lt;BR /&gt;sslPassword = $7$7OQ1bcyW5b53gGJ/us2ExVKxerWlcolKjoS1j7pZ05QpmNmIUt7NQw==&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;In the web.conf i was forgetting to put the certificate password so i just added:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;sslPassword = myselfsignedpassword&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;It works.&lt;/P&gt;</description>
    <pubDate>Mon, 13 Feb 2023 09:41:12 GMT</pubDate>
    <dc:creator>LinghGroove</dc:creator>
    <dc:date>2023-02-13T09:41:12Z</dc:date>
    <item>
      <title>How to make the https splunk web load with self-signed certificate?</title>
      <link>https://community.splunk.com/t5/Security/How-to-make-the-https-splunk-web-load-with-self-signed/m-p/630262#M16574</link>
      <description>&lt;P&gt;Hello everybody, can you please tell where i am making errors? I can't make the https splunk web load with my self signed certificate.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a test environment, one Splunk Server where i have executed the following steps:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;mkdir $SPLUNK_HOME/etc/auth/mycerts&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;cd $SPLUNK_HOME/etc/auth/mycerts&lt;BR /&gt;&lt;BR /&gt;$SPLUNK_HOME/bin/splunk cmd openssl genrsa -aes256 -out CAPK.key 2048 # Root CA private key&lt;BR /&gt;$SPLUNK_HOME/bin/splunk cmd openssl req -new -key CAPK.key -out CACSR.csr # Root CA signing request&lt;BR /&gt;# a this point in the Common Name i have tried putting everything, hostname, private ip, localhost, ecc but i doesn't seem to make any difference&lt;BR /&gt;$SPLUNK_HOME/bin/splunk cmd openssl x509 -req -in CACSR.csr -sha512 -signkey CAPK.key -CAcreateserial -out CACE.pem -days 1095 # my CA certificate&lt;BR /&gt;&lt;BR /&gt;$SPLUNK_HOME/bin/splunk cmd openssl genrsa -aes256 -out DEPPK.key 2048 # i have configured the same password for both keys but i doesn't seem to be the problem&lt;BR /&gt;$SPLUNK_HOME/bin/splunk cmd openssl req -new -key DEPPK.key -out DEPCSR.csr # for the Common Name value i have tried the same things for the CA&lt;BR /&gt;$SPLUNK_HOME/bin/splunk cmd openssl x509 -req -in DEPCSR.csr -SHA256 -CA CACE.pem -CAkey CAPK.key -CAcreateserial -out DEPCE.pem -days 1095&lt;BR /&gt;&lt;BR /&gt;cat DEPCE.pem DEPPK.key CACE.pem &amp;gt; DEPCEchain.pem&lt;BR /&gt;&lt;BR /&gt;# in the /opt/splunk/etc/system/local/web.conf i have written: &lt;BR /&gt;[settings]&lt;BR /&gt;enableSplunkWebSSL = true&lt;BR /&gt;privKeyPath = /opt/splunk/etc/auth/mycerts/DEPPK.key&lt;BR /&gt;serverCert = /opt/splunk/etc/auth/mycerts/DEPCEchain.pem&lt;BR /&gt;startwebserver = 1&lt;BR /&gt;httpport = 8000&lt;BR /&gt;&lt;BR /&gt;# to see if the connection to the server is going well i use  &lt;BR /&gt;openssl s_client -connect 192.168.1.11:8000&lt;BR /&gt;# OR&lt;BR /&gt; openssl s_client -connect 127.0.0.1:8000&lt;BR /&gt;# and it says CONNECTED(00000003) unfortunatly if i try to navigate splunk web on https it doesn't load&lt;BR /&gt;# i have tried putting the certificates inside /opt/splunk/etc/auth/splunkweb and then colling them in web.conf but nothing happens&lt;BR /&gt;# this is what is written inside server.conf:&lt;BR /&gt;&lt;BR /&gt;[sslConfig]&lt;BR /&gt;sslRootCAPath = /opt/splunk/etc/auth/mycerts/CertificateAuthorityCertificate.pem&lt;BR /&gt;sslPassword = $7$7OQ1bcyW5b53gGJ/us2ExVKxerWlcolKjoS1j7pZ05QpmNmIUt7NQw==&lt;BR /&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;I don't know what to try next, i can't find a solution, no matter what i try it won't load on splunk web.&lt;/P&gt;&lt;P data-unlink="true"&gt;Maybe it can help saying that i call&amp;nbsp;https://192.168.1.11:8000/&amp;nbsp;&amp;nbsp;on the browser. Even tried putting sslPassword inside web.conf with the key password but nothing changed.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2023 09:38:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/How-to-make-the-https-splunk-web-load-with-self-signed/m-p/630262#M16574</guid>
      <dc:creator>LinghGroove</dc:creator>
      <dc:date>2023-02-13T09:38:54Z</dc:date>
    </item>
    <item>
      <title>Re: How make the https splunk web load with self-signed certificate?</title>
      <link>https://community.splunk.com/t5/Security/How-to-make-the-https-splunk-web-load-with-self-signed/m-p/630616#M16581</link>
      <description>&lt;P&gt;Pretty dumb mistake. I have removed my root CA in the server.conf and I edited the password back to the default value "password".&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;[sslConfig]&lt;BR /&gt;sslRootCAPath = /opt/splunk/etc/auth/mycerts/CertificateAuthorityCertificate.pem&lt;BR /&gt;sslPassword = $7$7OQ1bcyW5b53gGJ/us2ExVKxerWlcolKjoS1j7pZ05QpmNmIUt7NQw==&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;In the web.conf i was forgetting to put the certificate password so i just added:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;sslPassword = myselfsignedpassword&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;It works.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2023 09:41:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/How-to-make-the-https-splunk-web-load-with-self-signed/m-p/630616#M16581</guid>
      <dc:creator>LinghGroove</dc:creator>
      <dc:date>2023-02-13T09:41:12Z</dc:date>
    </item>
  </channel>
</rss>

