<?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: deployment server in Deployment Architecture</title>
    <link>https://community.splunk.com/t5/Deployment-Architecture/deployment-server/m-p/28104#M697</link>
    <description>&lt;P&gt;The answer is possibly if you defined your server class correctly. Let elaborate a bit by adding deployment client D. Let say A and B are search heads then  C and D are Indexers.&lt;/P&gt;

&lt;P&gt;If you have apps called dashboard_2,dashboard_1 and ta_indices. The following config will deploy  dashboard_1 to all seach heads and dashboard_2 only to A since we are overriding filters at the serverClass:app level. Also notice we are restartign B when dashboard_2 is deployed. ta_indices will only be deployed to only to C and D. &lt;/P&gt;

&lt;P&gt;Also you will need to manually move apps to the deployments server repositor.&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;BR /&gt;
[global]&lt;BR /&gt;
repositoryLocation = %splunk%/etc/deployment-apps&lt;BR /&gt;
restartSplunkd = false&lt;BR /&gt;
restartSplunkWeb = false&lt;BR /&gt;
stateOnClient = disabled&lt;BR /&gt;
filterType = blacklist&lt;BR /&gt;
&lt;BR /&gt;&lt;BR /&gt;
################ Search Stanzas #################&lt;BR /&gt;
[serverClass:search]&lt;BR /&gt;
restartSplunkd = false&lt;BR /&gt;
stateOnClient = false&lt;BR /&gt;
whitelist.0 = A&lt;BR /&gt;
whitelist.1 = B&lt;BR /&gt;
&lt;BR /&gt;&lt;BR /&gt;
[serverClass:search:app:dashboard_1]&lt;BR /&gt;
stateOnClient = enabled&lt;BR /&gt;
&lt;BR /&gt;&lt;BR /&gt;
[serverClass:search:app:dashboard_2]&lt;BR /&gt;
restartSplunkWeb = true&lt;BR /&gt;
stateOnClient=enabled&lt;BR /&gt;
whitelist.0 = A&lt;BR /&gt;
blacklist.0 = B&lt;BR /&gt;
&lt;BR /&gt;&lt;BR /&gt;
################ Indexers Stanzas #################&lt;BR /&gt;
[serverClass:indexers]&lt;BR /&gt;
restartSplunkd = false&lt;BR /&gt;
stateOnClient = false&lt;BR /&gt;
whitelist.0 = C&lt;BR /&gt;
whitelist.1 = D&lt;BR /&gt;
&lt;BR /&gt;&lt;BR /&gt;
[serverClass:indexers:app:ta_indices] &lt;BR /&gt;
stateOnClient = enabled&lt;BR /&gt;
&lt;BR /&gt;&lt;BR /&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;Note: Overriding one type of filter (whitelist/blacklist) causes the other to be overridden too. If, for example, you override the whitelist, the blacklist will not be inherited from the parent; you must provide one in the stanza.&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;&lt;A href="http://docs.splunk.com/Documentation/Splunk/5.0/Deploy/Definedeploymentclasses"&gt;Definedeploymentclasses&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Hope this helps or gets you started.  Dont forget to thumbs up or accept answers. &lt;/P&gt;

&lt;P&gt;Cheers.&lt;/P&gt;</description>
    <pubDate>Thu, 08 Nov 2012 20:53:33 GMT</pubDate>
    <dc:creator>bmacias84</dc:creator>
    <dc:date>2012-11-08T20:53:33Z</dc:date>
    <item>
      <title>deployment server</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/deployment-server/m-p/28101#M694</link>
      <description>&lt;P&gt;hi all,&lt;/P&gt;

&lt;P&gt;Assume that we have the deployment seerver with 3 clients named as (A,B,C)&lt;/P&gt;

&lt;P&gt;if A client is creating the application and put it in the deplyoment server does the B client can access that???&lt;/P&gt;</description>
      <pubDate>Thu, 08 Nov 2012 15:55:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/deployment-server/m-p/28101#M694</guid>
      <dc:creator>splunkpoornima</dc:creator>
      <dc:date>2012-11-08T15:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: deployment server</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/deployment-server/m-p/28102#M695</link>
      <description>&lt;P&gt;All applications you wish to deploy from the deployment server need to be in its &lt;CODE&gt;repositoryLocation&lt;/CODE&gt; which by default is &lt;CODE&gt;$SPLUNK_HOME/etc/deployment-apps&lt;/CODE&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Nov 2012 16:03:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/deployment-server/m-p/28102#M695</guid>
      <dc:creator>dart</dc:creator>
      <dc:date>2012-11-08T16:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: deployment server</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/deployment-server/m-p/28103#M696</link>
      <description>&lt;P&gt;You have to tell the deployment server in its serverclass.conf file which clients should have what app. They don't automatically get an app, only if they match the whitelists. &lt;/P&gt;

&lt;P&gt;Also there is no automatic way of copying the app from client A onto the deployment server. You would have to do this manually. &lt;/P&gt;

&lt;P&gt;See &lt;A href="http://docs.splunk.com/Documentation/Splunk/5.0/Deploy/Aboutdeploymentserver"&gt;http://docs.splunk.com/Documentation/Splunk/5.0/Deploy/Aboutdeploymentserver&lt;/A&gt; for more detail.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Nov 2012 16:57:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/deployment-server/m-p/28103#M696</guid>
      <dc:creator>BobM</dc:creator>
      <dc:date>2012-11-08T16:57:51Z</dc:date>
    </item>
    <item>
      <title>Re: deployment server</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/deployment-server/m-p/28104#M697</link>
      <description>&lt;P&gt;The answer is possibly if you defined your server class correctly. Let elaborate a bit by adding deployment client D. Let say A and B are search heads then  C and D are Indexers.&lt;/P&gt;

&lt;P&gt;If you have apps called dashboard_2,dashboard_1 and ta_indices. The following config will deploy  dashboard_1 to all seach heads and dashboard_2 only to A since we are overriding filters at the serverClass:app level. Also notice we are restartign B when dashboard_2 is deployed. ta_indices will only be deployed to only to C and D. &lt;/P&gt;

&lt;P&gt;Also you will need to manually move apps to the deployments server repositor.&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;BR /&gt;
[global]&lt;BR /&gt;
repositoryLocation = %splunk%/etc/deployment-apps&lt;BR /&gt;
restartSplunkd = false&lt;BR /&gt;
restartSplunkWeb = false&lt;BR /&gt;
stateOnClient = disabled&lt;BR /&gt;
filterType = blacklist&lt;BR /&gt;
&lt;BR /&gt;&lt;BR /&gt;
################ Search Stanzas #################&lt;BR /&gt;
[serverClass:search]&lt;BR /&gt;
restartSplunkd = false&lt;BR /&gt;
stateOnClient = false&lt;BR /&gt;
whitelist.0 = A&lt;BR /&gt;
whitelist.1 = B&lt;BR /&gt;
&lt;BR /&gt;&lt;BR /&gt;
[serverClass:search:app:dashboard_1]&lt;BR /&gt;
stateOnClient = enabled&lt;BR /&gt;
&lt;BR /&gt;&lt;BR /&gt;
[serverClass:search:app:dashboard_2]&lt;BR /&gt;
restartSplunkWeb = true&lt;BR /&gt;
stateOnClient=enabled&lt;BR /&gt;
whitelist.0 = A&lt;BR /&gt;
blacklist.0 = B&lt;BR /&gt;
&lt;BR /&gt;&lt;BR /&gt;
################ Indexers Stanzas #################&lt;BR /&gt;
[serverClass:indexers]&lt;BR /&gt;
restartSplunkd = false&lt;BR /&gt;
stateOnClient = false&lt;BR /&gt;
whitelist.0 = C&lt;BR /&gt;
whitelist.1 = D&lt;BR /&gt;
&lt;BR /&gt;&lt;BR /&gt;
[serverClass:indexers:app:ta_indices] &lt;BR /&gt;
stateOnClient = enabled&lt;BR /&gt;
&lt;BR /&gt;&lt;BR /&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;Note: Overriding one type of filter (whitelist/blacklist) causes the other to be overridden too. If, for example, you override the whitelist, the blacklist will not be inherited from the parent; you must provide one in the stanza.&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;&lt;A href="http://docs.splunk.com/Documentation/Splunk/5.0/Deploy/Definedeploymentclasses"&gt;Definedeploymentclasses&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Hope this helps or gets you started.  Dont forget to thumbs up or accept answers. &lt;/P&gt;

&lt;P&gt;Cheers.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Nov 2012 20:53:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/deployment-server/m-p/28104#M697</guid>
      <dc:creator>bmacias84</dc:creator>
      <dc:date>2012-11-08T20:53:33Z</dc:date>
    </item>
  </channel>
</rss>

