<?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: Can inputs.conf be reloaded without restarting splunkd? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Can-inputs-conf-be-reloaded-without-restarting-splunkd/m-p/34284#M6208</link>
    <description>&lt;P&gt;You could use splunk _internal call for this, instead of wget:&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;./splunk _internal call /services/data/inputs/monitor/_reload -auth admin:changeme&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;But I have not succeded to reload inputs.conf with this or with wget.&lt;/P&gt;</description>
    <pubDate>Thu, 28 Oct 2010 18:17:24 GMT</pubDate>
    <dc:creator>sdaa</dc:creator>
    <dc:date>2010-10-28T18:17:24Z</dc:date>
    <item>
      <title>Can inputs.conf be reloaded without restarting splunkd?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Can-inputs-conf-be-reloaded-without-restarting-splunkd/m-p/34279#M6203</link>
      <description>&lt;P&gt;As splunk can't handle large number of files (e.g. thousands of files) at the same time, I use shell script to modify the whitelist in inputs.conf. Will splunk reload the configuration setting after a period of time without restarting?&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2010 18:03:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Can-inputs-conf-be-reloaded-without-restarting-splunkd/m-p/34279#M6203</guid>
      <dc:creator>katalinali</dc:creator>
      <dc:date>2010-08-20T18:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: Can inputs.conf be reloaded without restarting splunkd?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Can-inputs-conf-be-reloaded-without-restarting-splunkd/m-p/34280#M6204</link>
      <description>&lt;P&gt;A restart is required. &lt;/P&gt;

&lt;P&gt;See: &lt;A href="http://www.splunk.com/base/Documentation/latest/Admin/Inputsconf" rel="nofollow"&gt;http://www.splunk.com/base/Documentation/latest/Admin/Inputsconf&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;This section:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;# There is an inputs.conf in $SPLUNK_HOME/etc/system/default/.  To set custom configurations, 
# place an inputs.conf in $SPLUNK_HOME/etc/system/local/.  For examples, see inputs.conf.example.
# You must restart Splunk to enable new configurations.
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 20 Aug 2010 18:10:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Can-inputs-conf-be-reloaded-without-restarting-splunkd/m-p/34280#M6204</guid>
      <dc:creator>skippylou</dc:creator>
      <dc:date>2010-08-20T18:10:09Z</dc:date>
    </item>
    <item>
      <title>Re: Can inputs.conf be reloaded without restarting splunkd?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Can-inputs-conf-be-reloaded-without-restarting-splunkd/m-p/34281#M6205</link>
      <description>&lt;P&gt;Splunk 4.1 should be easily able to handle hundreds of thousands of files, as long as only thousands of files are changing at the same time.&lt;/P&gt;

&lt;P&gt;You can cause Splunk to reread its file input configuration by POSTing to &lt;CODE&gt;&lt;A href="https://splunk-server:8089/services/data/inputs/monitor/_reload" target="test_blank"&gt;https://splunk-server:8089/services/data/inputs/monitor/_reload&lt;/A&gt;&lt;/CODE&gt;.&lt;/P&gt;

&lt;P&gt;For example:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;wget &lt;A href="https://localhost:8089/services/data/inputs/monitor/_reload" target="test_blank"&gt;https://localhost:8089/services/data/inputs/monitor/_reload&lt;/A&gt; --post-data '' --no-check-certificate --user admin --password changeme -O -
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 21 Aug 2010 09:59:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Can-inputs-conf-be-reloaded-without-restarting-splunkd/m-p/34281#M6205</guid>
      <dc:creator>Stephen_Sorkin</dc:creator>
      <dc:date>2010-08-21T09:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: Can inputs.conf be reloaded without restarting splunkd?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Can-inputs-conf-be-reloaded-without-restarting-splunkd/m-p/34282#M6206</link>
      <description>&lt;P&gt;The docs comments are actually incorrect. It is possible to reload inputs.conf without a restart. See Stephen Sorkin's answer&lt;/P&gt;</description>
      <pubDate>Sat, 21 Aug 2010 10:54:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Can-inputs-conf-be-reloaded-without-restarting-splunkd/m-p/34282#M6206</guid>
      <dc:creator>gkanapathy</dc:creator>
      <dc:date>2010-08-21T10:54:37Z</dc:date>
    </item>
    <item>
      <title>Re: Can inputs.conf be reloaded without restarting splunkd?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Can-inputs-conf-be-reloaded-without-restarting-splunkd/m-p/34283#M6207</link>
      <description>&lt;P&gt;Splunk 4.1+ can handle at least a few hundreds of thousands of files&lt;/P&gt;</description>
      <pubDate>Sat, 21 Aug 2010 13:42:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Can-inputs-conf-be-reloaded-without-restarting-splunkd/m-p/34283#M6207</guid>
      <dc:creator>gkanapathy</dc:creator>
      <dc:date>2010-08-21T13:42:56Z</dc:date>
    </item>
    <item>
      <title>Re: Can inputs.conf be reloaded without restarting splunkd?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Can-inputs-conf-be-reloaded-without-restarting-splunkd/m-p/34284#M6208</link>
      <description>&lt;P&gt;You could use splunk _internal call for this, instead of wget:&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;./splunk _internal call /services/data/inputs/monitor/_reload -auth admin:changeme&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;But I have not succeded to reload inputs.conf with this or with wget.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Oct 2010 18:17:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Can-inputs-conf-be-reloaded-without-restarting-splunkd/m-p/34284#M6208</guid>
      <dc:creator>sdaa</dc:creator>
      <dc:date>2010-10-28T18:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: Can inputs.conf be reloaded without restarting splunkd?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Can-inputs-conf-be-reloaded-without-restarting-splunkd/m-p/34285#M6209</link>
      <description>&lt;P&gt;^ Also correct. I prefer the above as I don't have to hard code the pw when running from cli.&lt;/P&gt;

&lt;P&gt;./splunk _internal call /services/data/inputs/monitor/_reload -auth&lt;/P&gt;

&lt;P&gt;Will prompt you for Username: &amp;amp; Password: so you do not have to list them in your bash_history&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 12:46:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Can-inputs-conf-be-reloaded-without-restarting-splunkd/m-p/34285#M6209</guid>
      <dc:creator>gfrjonp</dc:creator>
      <dc:date>2020-09-28T12:46:17Z</dc:date>
    </item>
    <item>
      <title>Re: Can inputs.conf be reloaded without restarting splunkd?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Can-inputs-conf-be-reloaded-without-restarting-splunkd/m-p/34286#M6210</link>
      <description>&lt;P&gt;I believe the supported way is by doing a full restart. For some specific configuration changes in inputs.conf, a simple reload may not be sufficient. But Sorkin's answer will be very useful for me !&lt;/P&gt;</description>
      <pubDate>Tue, 12 Feb 2013 16:51:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Can-inputs-conf-be-reloaded-without-restarting-splunkd/m-p/34286#M6210</guid>
      <dc:creator>yoho</dc:creator>
      <dc:date>2013-02-12T16:51:17Z</dc:date>
    </item>
    <item>
      <title>Re: Can inputs.conf be reloaded without restarting splunkd?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Can-inputs-conf-be-reloaded-without-restarting-splunkd/m-p/34287#M6211</link>
      <description>&lt;P&gt;Will this work with tranforms and props as well?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Dec 2016 21:41:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Can-inputs-conf-be-reloaded-without-restarting-splunkd/m-p/34287#M6211</guid>
      <dc:creator>campbellj1977</dc:creator>
      <dc:date>2016-12-08T21:41:30Z</dc:date>
    </item>
    <item>
      <title>Re: Can inputs.conf be reloaded without restarting splunkd?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Can-inputs-conf-be-reloaded-without-restarting-splunkd/m-p/34288#M6212</link>
      <description>&lt;P&gt;For many cases the extracts in the props.conf can be reloaded by appending the following to a search - &lt;/P&gt;

&lt;P&gt;| extract reload=true&lt;/P&gt;

&lt;P&gt;This may work for transforms, if there is only a change to an existing setting,  You would probably need to restart if you create a new setting in transforms.conf .  Then again, it might not.  I have had mixed results with many of these "on the fly" efforts.  It is safest to restart.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jun 2018 20:06:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Can-inputs-conf-be-reloaded-without-restarting-splunkd/m-p/34288#M6212</guid>
      <dc:creator>gbowden_pheaa</dc:creator>
      <dc:date>2018-06-11T20:06:32Z</dc:date>
    </item>
  </channel>
</rss>

