<?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 Unable to Access Splunk Web via HTTPS in Splunk Enterprise</title>
    <link>https://community.splunk.com/t5/Splunk-Enterprise/Unable-to-Access-Splunk-Web-via-HTTPS/m-p/750007#M22656</link>
    <description>&lt;P&gt;I am currently facing an issue accessing the Splunk Web interface over HTTPS.&lt;/P&gt;&lt;P&gt;When I configure enableSplunkWebSSL = true in web.conf, the Splunk Web service appears to start normally, and the port 8000 is open. However, users are unable to reach the interface via the public IP using HTTPS.&lt;/P&gt;&lt;P&gt;When I change the configuration to enableSplunkWebSSL = false, and use HTTP instead, everything works fine — users can successfully access the Splunk Web interface on the public IP and port 8000.&lt;/P&gt;&lt;P&gt;Additional details:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;There is full network connectivity; telnet to the public IP and port 8000 works.&lt;/LI&gt;&lt;LI&gt;The issue is reproducible across different browsers and devices.&lt;/LI&gt;&lt;LI&gt;The certificate used is the default self-signed certificate provided by Splunk.&lt;/LI&gt;&lt;LI&gt;The Splunk Web service log does not show any fatal errors.&lt;P&gt;I need to maintain HTTPS access for security compliance. Could you please assist in identifying the root cause and provide guidance on how to ensure HTTPS access works properly over the public IP?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
    <pubDate>Thu, 17 Jul 2025 12:15:38 GMT</pubDate>
    <dc:creator>ielshahrori</dc:creator>
    <dc:date>2025-07-17T12:15:38Z</dc:date>
    <item>
      <title>Unable to Access Splunk Web via HTTPS</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/Unable-to-Access-Splunk-Web-via-HTTPS/m-p/750007#M22656</link>
      <description>&lt;P&gt;I am currently facing an issue accessing the Splunk Web interface over HTTPS.&lt;/P&gt;&lt;P&gt;When I configure enableSplunkWebSSL = true in web.conf, the Splunk Web service appears to start normally, and the port 8000 is open. However, users are unable to reach the interface via the public IP using HTTPS.&lt;/P&gt;&lt;P&gt;When I change the configuration to enableSplunkWebSSL = false, and use HTTP instead, everything works fine — users can successfully access the Splunk Web interface on the public IP and port 8000.&lt;/P&gt;&lt;P&gt;Additional details:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;There is full network connectivity; telnet to the public IP and port 8000 works.&lt;/LI&gt;&lt;LI&gt;The issue is reproducible across different browsers and devices.&lt;/LI&gt;&lt;LI&gt;The certificate used is the default self-signed certificate provided by Splunk.&lt;/LI&gt;&lt;LI&gt;The Splunk Web service log does not show any fatal errors.&lt;P&gt;I need to maintain HTTPS access for security compliance. Could you please assist in identifying the root cause and provide guidance on how to ensure HTTPS access works properly over the public IP?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Thu, 17 Jul 2025 12:15:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/Unable-to-Access-Splunk-Web-via-HTTPS/m-p/750007#M22656</guid>
      <dc:creator>ielshahrori</dc:creator>
      <dc:date>2025-07-17T12:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to Access Splunk Web via HTTPS</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/Unable-to-Access-Splunk-Web-via-HTTPS/m-p/750009#M22657</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/311720"&gt;@ielshahrori&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The issue you have is likely due to a mismatch between the default self-signed certificate's Common Name (CN), which is typically set to the Splunk server's hostname or localhost, and the public IP address used for access. This causes SSL/TLS handshake failures in browsers when attempting HTTPS connections (e.g., &lt;A href="https://publicIP:8000" target="_blank" rel="noopener"&gt;https://publicIP:8000&lt;/A&gt;), even though basic TCP connectivity (like telnet) succeeds on port 8000. Browsers enforce strict certificate validation, and self-signed certs with CN mismatches often result in "unable to reach" errors without an option to proceed unless explicitly overridden.&lt;/P&gt;&lt;P&gt;If you are using the public IP address over HTTPS then I assume you do not have a valid trusted certificate that the clients can validate for connecting to Splunk? Its not typical to have an SSL certificate that matches an IP address, instead you should have a hostname with DNS that resolves to the IP address of your Splunk server.&lt;/P&gt;&lt;P&gt;Then you will either need a Public Trusted SSL cert, or a self-signed cert which the clients have the root CA trusted one their system. You can then configure the custom SSL cert in Splunk:&amp;nbsp;&lt;/P&gt;&lt;P&gt;Update web.conf (typically in $SPLUNK_HOME/etc/system/local/) with:&lt;/P&gt;&lt;PRE&gt;[settings]
  enableSplunkWebSSL = true
  serverCert = &amp;lt;path_to_your_new_cert.pem&amp;gt; &lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Did this answer help you?&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If so, please consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adding karma to show it was useful&lt;/LI&gt;&lt;LI&gt;Marking it as the solution if it resolved your issue&lt;/LI&gt;&lt;LI&gt;Commenting if you need any clarification&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your feedback encourages the volunteers in this community to continue contributing&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jul 2025 12:30:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/Unable-to-Access-Splunk-Web-via-HTTPS/m-p/750009#M22657</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-07-17T12:30:10Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to Access Splunk Web via HTTPS</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/Unable-to-Access-Splunk-Web-via-HTTPS/m-p/750045#M22663</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/311720"&gt;@ielshahrori&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you enable HTTPS and access Splunk Web via a public IP, browsers attempt to validate the SSL certificate. The default Splunk self-signed certificate:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;-Has a Common Name (CN) set to localhost or the server’s hostname&lt;BR /&gt;-Does not match the public IP address&lt;BR /&gt;-Is not trusted by browsers&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Replace the Default Self-Signed Certificate&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Option A: Use a DNS Hostname&lt;/STRONG&gt;&lt;BR /&gt;Assign a DNS name (e.g., splunk.test.com) pointing to your public IP.&lt;/P&gt;&lt;P&gt;Generate a certificate for that hostname using:&lt;BR /&gt;A commercial CA (e.g., DigiCert, Sectigo)Or a free CA like Let’s Encrypt&lt;/P&gt;&lt;P&gt;Access Splunk Web via &lt;A href="https://splunk.test.com:8000" target="_blank"&gt;https://splunk.test.com:8000&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Option B: Use a Self-Signed Cert&lt;/STRONG&gt; with Public IP as CN&lt;BR /&gt;Generate a self-signed certificate with the CN set to your public IP.&lt;/P&gt;&lt;P&gt;Install the root certificate on client machines to avoid trust warnings.&lt;BR /&gt;&lt;STRONG&gt;Note:&lt;/STRONG&gt; I would not recommend this for &lt;STRONG&gt;production&lt;/STRONG&gt; or &lt;STRONG&gt;external access&lt;/STRONG&gt; due to browser limitations, trust issues, compliance and best practices.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Refer#&lt;A href="https://help.splunk.com/en/splunk-enterprise/administer/manage-users-and-security/9.3/secure-splunk-platform-communications-with-transport-layer-security-certificates/how-to-create-and-sign-your-own-tls-certificates" target="_blank"&gt;https://help.splunk.com/en/splunk-enterprise/administer/manage-users-and-security/9.3/secure-splunk-platform-communications-with-transport-layer-security-certificates/how-to-create-and-sign-your-own-tls-certificates&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Install the Certificate in Splunk&lt;BR /&gt;Place the new certificate and key files on your Splunk server.&lt;/P&gt;&lt;P&gt;Edit $SPLUNK_HOME/etc/system/local/web.conf:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[settings]
enableSplunkWebSSL = true
serverCert = /opt/splunk/etc/auth/custom_ssl/splunk_cert.pem
privKeyPath = /opt/splunk/etc/auth/custom_ssl/splunk_key.pem&lt;/LI-CODE&gt;&lt;P&gt;Then restart Splunk&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Also you can refer #&lt;A href="https://docs.splunk.com/Documentation/Splunk/9.4.2/Security/SecureSplunkWebusingasignedcertificate" target="_blank"&gt;https://docs.splunk.com/Documentation/Splunk/9.4.2/Security/SecureSplunkWebusingasignedcertificate&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Prewin&lt;BR /&gt;Splunk Enthusiast | Always happy to help! If this answer helped you, please consider marking it as the solution or giving a Karma. Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jul 2025 04:55:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/Unable-to-Access-Splunk-Web-via-HTTPS/m-p/750045#M22663</guid>
      <dc:creator>PrewinThomas</dc:creator>
      <dc:date>2025-07-18T04:55:27Z</dc:date>
    </item>
  </channel>
</rss>

