<?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: Splunk Down in Monitoring Splunk</title>
    <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Down/m-p/403191#M3438</link>
    <description>&lt;P&gt;Please let me know if this worked. &lt;/P&gt;

&lt;P&gt;If my answer was helpful, please accept this as a solution.&lt;/P&gt;</description>
    <pubDate>Tue, 09 Apr 2019 17:07:22 GMT</pubDate>
    <dc:creator>ashutoshab</dc:creator>
    <dc:date>2019-04-09T17:07:22Z</dc:date>
    <item>
      <title>Splunk Down</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Down/m-p/403188#M3435</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;One of my Universal forwarder was down for a week. So when i noticed I restarted the services back again but it is not coming up. I am facing the below error. Can someone please help&lt;/P&gt;

&lt;P&gt;Splunk&amp;gt; Needle. Haystack. Found.&lt;/P&gt;

&lt;P&gt;Checking prerequisites...&lt;BR /&gt;
WARNING: Data segment size limit (ulimit -d) is set low (134217728 bytes)  Splunk may not work.&lt;BR /&gt;
         You may want to run "ulimit -d unlimited" before starting splunk.&lt;BR /&gt;
WARNING: Resident memory size limit (ulimit -m) is set low (33554432 bytes)  Splunk may not work.&lt;BR /&gt;
         You may want to run "ulimit -m unlimited" before starting splunk.&lt;BR /&gt;
WARNING: File size limit (ulimit -f) is set low (1073741312 bytes)  Splunk may not work.&lt;BR /&gt;
         You may want to run "ulimit -f unlimited" before starting splunk.&lt;BR /&gt;
        Checking mgmt port [8089]: open&lt;BR /&gt;
Assertion failed: _linkp == nullptr, file  /home/build/build-src/orangeswirl/src/util/TimeoutHeap.cpp, line 46&lt;BR /&gt;
Dying on signal #6 (si_code=0), sent by PID 0 (UID 0). Attempting to clean up pidfile&lt;BR /&gt;
ERROR: pid 8454562 terminated with signal 6&lt;BR /&gt;
SSL certificate generation failed. &lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 00:03:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Down/m-p/403188#M3435</guid>
      <dc:creator>ramprakash</dc:creator>
      <dc:date>2020-09-30T00:03:51Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Down</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Down/m-p/403189#M3436</link>
      <description>&lt;P&gt;This is clear sign of ulimit restrictions. Your UF which is installed on unix os is been restricted by ulimit. Most of the Linux have ulimit feature. Ulimit is the number of open file descriptors per process. It is a method for restricting the number of various resources a process can consume. So ulimit is not allowing your UF to open more number of files. &lt;/P&gt;

&lt;P&gt;You can get rid of the error by changing the ulimit settings. &lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;There are a few ways you can check your current ulimit settings.&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;On the command line, you can type &lt;CODE&gt;ulimit -a&lt;/CODE&gt;&lt;BR /&gt;
You can restart Splunk Enterprise and look in splunkd.log for events mentioning ulimit:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source=*splunkd.log ulimit
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The monitoring console has a health check for ulimits.&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;To set new Limits&lt;/STRONG&gt;&lt;BR /&gt;
Depending on your Linux, there are various ways to change the limits.&lt;/P&gt;

&lt;OL&gt;
&lt;LI&gt;For earlier versions of Linux that use the &lt;CODE&gt;init&lt;/CODE&gt; system, edit the &lt;CODE&gt;/etc/security/limits.conf file&lt;/CODE&gt;.&lt;/LI&gt;
&lt;LI&gt;For the latest versions of Linux that run the &lt;CODE&gt;systemd&lt;/CODE&gt; system, edit either &lt;CODE&gt;/etc/systemd/system.conf&lt;/CODE&gt;, &lt;CODE&gt;/etc/systemd/user.conf&lt;/CODE&gt; or, if Splunk software has been configured to run as a systemd service, &lt;CODE&gt;/etc/systemd/system/splunkd.service&lt;/CODE&gt;.&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;&lt;STRONG&gt;Set limits using /etc/security/limits.conf&lt;/STRONG&gt;&lt;/P&gt;

&lt;OL&gt;
&lt;LI&gt;Become a root user or user with root priviledges and Open &lt;CODE&gt;/etc/security/limits.conf&lt;/CODE&gt; with a text editor.&lt;/LI&gt;
&lt;LI&gt;Add at least the following values, or confirm that they exist:
**    hard    nofile     64000&lt;/LI&gt;
&lt;LI&gt;   hard    nproc     8192&lt;/LI&gt;
&lt;LI&gt;   hard    fsize      -1 *&lt;/LI&gt;
&lt;LI&gt;Save the file and exit the text editor.&lt;/LI&gt;
&lt;LI&gt;Restart the machine to complete the changes.&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;&lt;STRONG&gt;Set limits using the /etc/systemd configuration files&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;Editing the &lt;CODE&gt;/etc/systemd/system.conf&lt;/CODE&gt; file sets system-wide limits, while editing &lt;CODE&gt;/etc/systemd/user.conf&lt;/CODE&gt; sets limits for services that run under a specific user within systemd.&lt;/P&gt;

&lt;OL&gt;
&lt;LI&gt;Become the root user or an administrative equivalent with &lt;CODE&gt;su&lt;/CODE&gt; Open &lt;CODE&gt;/etc/systemd/system.conf&lt;/CODE&gt; with a text editor.&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;Add at least the following values to the file:&lt;/P&gt;

&lt;P&gt;[Manager]&lt;BR /&gt;
DefaultLimitFSIZE=-1&lt;BR /&gt;
DefaultLimitNOFILE=64000 &lt;BR /&gt;
DefaultLimitNPROC=8192&lt;/P&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;Save the file and exit the text editor.&lt;/P&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;Restart the machine to complete the changes.&lt;/P&gt;&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Tue, 09 Apr 2019 11:10:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Down/m-p/403189#M3436</guid>
      <dc:creator>ashutoshab</dc:creator>
      <dc:date>2019-04-09T11:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Down</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Down/m-p/403190#M3437</link>
      <description>&lt;P&gt;Thanks much for giving the detailed explanation. Let me change Ulimit and get back to you.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2019 15:13:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Down/m-p/403190#M3437</guid>
      <dc:creator>ramprakash</dc:creator>
      <dc:date>2019-04-09T15:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Down</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Down/m-p/403191#M3438</link>
      <description>&lt;P&gt;Please let me know if this worked. &lt;/P&gt;

&lt;P&gt;If my answer was helpful, please accept this as a solution.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2019 17:07:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Down/m-p/403191#M3438</guid>
      <dc:creator>ashutoshab</dc:creator>
      <dc:date>2019-04-09T17:07:22Z</dc:date>
    </item>
  </channel>
</rss>

