<?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: Is there a way to force UF to phone home to DS? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Is-there-a-way-to-force-UF-to-phone-home-to-DS/m-p/401045#M71408</link>
    <description>&lt;P&gt;The only way is to restart Splunk.  One of the very first things that every Splunk does is DS phonehome.&lt;/P&gt;</description>
    <pubDate>Fri, 19 Jul 2019 21:48:05 GMT</pubDate>
    <dc:creator>woodcock</dc:creator>
    <dc:date>2019-07-19T21:48:05Z</dc:date>
    <item>
      <title>Is there a way to force UF to phone home to DS?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Is-there-a-way-to-force-UF-to-phone-home-to-DS/m-p/401043#M71406</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;

&lt;P&gt;I just want to ask if there's a way to force UF to phone home to DS, we want to initiate a force phone home without editing the phone home interval under the deploymentclient.conf, currently the UF is set to phone home to the DS every 6 hours but  we have a requirement that sometimes it is required to force phone home to the DS asap. I've already tried restarting the UF and running ./splunk reload deploy-server on the DS to see if it can trigger the UF to force phone home to the DS but it does not work, is there a way to do this, any suggestion can help.&lt;/P&gt;

&lt;P&gt;Thanks and regards,&lt;BR /&gt;
...&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2019 06:26:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Is-there-a-way-to-force-UF-to-phone-home-to-DS/m-p/401043#M71406</guid>
      <dc:creator>mjlsnombrado</dc:creator>
      <dc:date>2019-07-19T06:26:48Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to force UF to phone home to DS?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Is-there-a-way-to-force-UF-to-phone-home-to-DS/m-p/401044#M71407</link>
      <description>&lt;P&gt;No, I don't think there is a way to force any client. How many UFs do you have for such a high interval?&lt;/P&gt;

&lt;P&gt;Skalli&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2019 16:03:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Is-there-a-way-to-force-UF-to-phone-home-to-DS/m-p/401044#M71407</guid>
      <dc:creator>skalliger</dc:creator>
      <dc:date>2019-07-19T16:03:11Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to force UF to phone home to DS?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Is-there-a-way-to-force-UF-to-phone-home-to-DS/m-p/401045#M71408</link>
      <description>&lt;P&gt;The only way is to restart Splunk.  One of the very first things that every Splunk does is DS phonehome.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2019 21:48:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Is-there-a-way-to-force-UF-to-phone-home-to-DS/m-p/401045#M71408</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-07-19T21:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to force UF to phone home to DS?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Is-there-a-way-to-force-UF-to-phone-home-to-DS/m-p/712431#M117662</link>
      <description>&lt;P&gt;i think i might have found something...&amp;nbsp;&lt;/P&gt;&lt;P&gt;i tested this by setting the&amp;nbsp;&lt;SPAN&gt;phoneHomeIntervalInSecs = 3600 so that it only pulls the updates every hour&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;and i found this REST call under &lt;A title="deployment/client/{name}/reload" href="https://docs.splunk.com/Documentation/Splunk/7.0.11/RESTREF/RESTdeploy" target="_self"&gt;REST API Reference Manual&lt;/A&gt;&amp;nbsp; and i tried to do so ...but the /reload does not seem to force the client to do&amp;nbsp;&lt;STRONG&gt;phoneHome&lt;/STRONG&gt; but i found another option in the response that i am able to use&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;    &amp;lt;link href="/services/deployment/client/config" rel="list"/&amp;gt;
    &amp;lt;link href="/services/deployment/client/config" rel="edit"/&amp;gt;
    &amp;lt;link href="/services/deployment/client/config/reload" rel="reload"/&amp;gt;
    &amp;lt;link href="/services/deployment/client/config/sync" rel="sync"/&amp;gt;
    &amp;lt;content type="text/xml"&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it is /sync&amp;nbsp;&lt;/P&gt;&lt;P&gt;so i tried using&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt; curl -k -u username:pass -X POST https://&amp;lt;IP&amp;gt;:8089/services/deployment/client/deployment-client/sync&lt;/LI-CODE&gt;&lt;P&gt;and it is helping me to have the client do &lt;STRONG&gt;phoneHome&lt;/STRONG&gt; when i hit this url.&lt;/P&gt;&lt;P&gt;it also pulled the app updates which i did.&amp;nbsp;&lt;/P&gt;&lt;P&gt;This worked for me .&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Feb 2025 11:00:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Is-there-a-way-to-force-UF-to-phone-home-to-DS/m-p/712431#M117662</guid>
      <dc:creator>dchavda</dc:creator>
      <dc:date>2025-02-25T11:00:49Z</dc:date>
    </item>
  </channel>
</rss>

