<?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 How to disable Splunk app with curl command? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-to-disable-Splunk-app-with-curl-command/m-p/231945#M45197</link>
    <description>&lt;P&gt;Does anyone know the curl command to disable Splunk app?&lt;/P&gt;</description>
    <pubDate>Wed, 18 Jan 2017 03:21:10 GMT</pubDate>
    <dc:creator>srinivasup</dc:creator>
    <dc:date>2017-01-18T03:21:10Z</dc:date>
    <item>
      <title>How to disable Splunk app with curl command?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-disable-Splunk-app-with-curl-command/m-p/231945#M45197</link>
      <description>&lt;P&gt;Does anyone know the curl command to disable Splunk app?&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2017 03:21:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-disable-Splunk-app-with-curl-command/m-p/231945#M45197</guid>
      <dc:creator>srinivasup</dc:creator>
      <dc:date>2017-01-18T03:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to disable Splunk app with curl command?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-disable-Splunk-app-with-curl-command/m-p/231946#M45198</link>
      <description>&lt;P&gt;Try&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;curl -k -u admin:pass &lt;A href="https://localhost:8089/servicesNS/nobody/&amp;lt;your" target="test_blank"&gt;https://localhost:8089/servicesNS/nobody/&amp;lt;your&lt;/A&gt; app name&amp;gt;/configs/conf-app/install -d state=disabled
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Reference : &lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/6.5.1/Admin/Appconf#.5Binstall.5D"&gt;http://docs.splunk.com/Documentation/Splunk/6.5.1/Admin/Appconf#.5Binstall.5D&lt;/A&gt;&lt;BR /&gt;
&lt;A href="https://docs.splunk.com/Documentation/Splunk/6.5.1/RESTREF/RESTconf#configs.2Fconf-.7Bfile.7D.2F.7Bstanza.7D"&gt;https://docs.splunk.com/Documentation/Splunk/6.5.1/RESTREF/RESTconf#configs.2Fconf-.7Bfile.7D.2F.7Bstanza.7D&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2017 06:07:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-disable-Splunk-app-with-curl-command/m-p/231946#M45198</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2017-01-18T06:07:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to disable Splunk app with curl command?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-disable-Splunk-app-with-curl-command/m-p/231947#M45199</link>
      <description>&lt;P&gt;@srinivasup - Were you able to test out renjith.nair's solution? Did it work? If yes, please don't forget to resolve this post by clicking on "Accept". If you still need more help, please provide a comment with some feedback. Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jan 2017 02:23:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-disable-Splunk-app-with-curl-command/m-p/231947#M45199</guid>
      <dc:creator>aaraneta_splunk</dc:creator>
      <dc:date>2017-01-23T02:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to disable Splunk app with curl command?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-disable-Splunk-app-with-curl-command/m-p/231948#M45200</link>
      <description>&lt;P&gt;Try using the below CURL commands to enable/disable -&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;curl -k -u admin:password &lt;A href="https://localhost:8089/servicesNS/nobody/-/apps/local/&amp;lt;your_app_name&amp;gt;/disable" target="test_blank"&gt;https://localhost:8089/servicesNS/nobody/-/apps/local/&amp;lt;your_app_name&amp;gt;/disable&lt;/A&gt; -X POST
curl -k -u admin:password &lt;A href="https://localhost:8089/servicesNS/nobody/-/apps/local/&amp;lt;your_app_name&amp;gt;/enable" target="test_blank"&gt;https://localhost:8089/servicesNS/nobody/-/apps/local/&amp;lt;your_app_name&amp;gt;/enable&lt;/A&gt; -X POST
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;However, it will make the change only on the search head where you issue the CURL command. You may have to run the same command on all SHC peers.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2017 12:20:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-disable-Splunk-app-with-curl-command/m-p/231948#M45200</guid>
      <dc:creator>dineshraj9</dc:creator>
      <dc:date>2017-04-27T12:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to disable Splunk app with curl command?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-disable-Splunk-app-with-curl-command/m-p/231949#M45201</link>
      <description>&lt;P&gt;I had tried this, but didn't work. Being a configuration it requires a restart for the state change to reflect.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2017 12:21:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-disable-Splunk-app-with-curl-command/m-p/231949#M45201</guid>
      <dc:creator>dineshraj9</dc:creator>
      <dc:date>2017-04-27T12:21:58Z</dc:date>
    </item>
  </channel>
</rss>

