<?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 2 Splunk instance on Linux -  passwd sync in Deployment Architecture</title>
    <link>https://community.splunk.com/t5/Deployment-Architecture/2-Splunk-instance-on-Linux-passwd-sync/m-p/54566#M1759</link>
    <description>&lt;P&gt;After setting up Load Balance on 2 mirrored Splunk instance I had 2 passwd files located locally on each instance in /opt/splunk/etc/passwd. To sync passwords among the 2 instances, I created a (Linux) symbolic link to a shared drive /opt/share/etc/passwd. However when I created a new account (on 1 instance), the symbolic link was lost and the file returned local status once more. &lt;/P&gt;

&lt;P&gt;How do sync credentials (passwd) on all splunk instances so I don't have to create an account on each instance manually? LDAP is currently not an option as I don't have resources for that now.&lt;/P&gt;

&lt;P&gt;Thank you in advance!&lt;/P&gt;</description>
    <pubDate>Fri, 07 Sep 2012 17:54:16 GMT</pubDate>
    <dc:creator>Benomran</dc:creator>
    <dc:date>2012-09-07T17:54:16Z</dc:date>
    <item>
      <title>2 Splunk instance on Linux -  passwd sync</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/2-Splunk-instance-on-Linux-passwd-sync/m-p/54566#M1759</link>
      <description>&lt;P&gt;After setting up Load Balance on 2 mirrored Splunk instance I had 2 passwd files located locally on each instance in /opt/splunk/etc/passwd. To sync passwords among the 2 instances, I created a (Linux) symbolic link to a shared drive /opt/share/etc/passwd. However when I created a new account (on 1 instance), the symbolic link was lost and the file returned local status once more. &lt;/P&gt;

&lt;P&gt;How do sync credentials (passwd) on all splunk instances so I don't have to create an account on each instance manually? LDAP is currently not an option as I don't have resources for that now.&lt;/P&gt;

&lt;P&gt;Thank you in advance!&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2012 17:54:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/2-Splunk-instance-on-Linux-passwd-sync/m-p/54566#M1759</guid>
      <dc:creator>Benomran</dc:creator>
      <dc:date>2012-09-07T17:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: 2 Splunk instance on Linux -  passwd sync</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/2-Splunk-instance-on-Linux-passwd-sync/m-p/54567#M1760</link>
      <description>&lt;P&gt;How about rsync?&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2012 20:58:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/2-Splunk-instance-on-Linux-passwd-sync/m-p/54567#M1760</guid>
      <dc:creator>MHibbin</dc:creator>
      <dc:date>2012-09-07T20:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: 2 Splunk instance on Linux -  passwd sync</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/2-Splunk-instance-on-Linux-passwd-sync/m-p/54568#M1761</link>
      <description>&lt;P&gt;After a quick review on rsync I found this example command:&lt;BR /&gt;
rsync -avvr $SPLUNK_HOME/etc/system/local/ &amp;lt;$SPLUNK_HOME/etc/apps/&amp;gt; &lt;TARGET_SERVER&gt;:/$SPLUNK_HOME/etc/&lt;/TARGET_SERVER&gt;&lt;/P&gt;

&lt;P&gt;What is the best way to rsync-ing it with existing shared folder? Is rsync both-way or one-way? My plan is to have additional instances in the future. I would still need to create an account via one instance. &lt;/P&gt;

&lt;P&gt;The Idea would be to:&lt;BR /&gt;
Instance 1 (Create accounts, transfer passwd to shared folder)&lt;BR /&gt;
Instance 2 (receive copy of passwd from shared folder)&lt;BR /&gt;
instance 3 (future - receive copy of passwd from shared folder)&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 12:24:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/2-Splunk-instance-on-Linux-passwd-sync/m-p/54568#M1761</guid>
      <dc:creator>Benomran</dc:creator>
      <dc:date>2020-09-28T12:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: 2 Splunk instance on Linux -  passwd sync</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/2-Splunk-instance-on-Linux-passwd-sync/m-p/54569#M1762</link>
      <description>&lt;P&gt;Instance 1:&lt;BR /&gt;
rsync -av $SPLUNK_HOME/etc/passwd /sharedfolder/splunk/passwd&lt;/P&gt;

&lt;P&gt;Instance 2/3/...:&lt;BR /&gt;
rsync -av /sharedfolder/splunk/passwd $SPLUNK_HOME/etc/passwd&lt;/P&gt;

&lt;P&gt;Put these both in cron every 5 minutes (or so) and you should be good to go.&lt;/P&gt;</description>
      <pubDate>Sun, 09 Sep 2012 21:05:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/2-Splunk-instance-on-Linux-passwd-sync/m-p/54569#M1762</guid>
      <dc:creator>adamw</dc:creator>
      <dc:date>2012-09-09T21:05:24Z</dc:date>
    </item>
    <item>
      <title>Re: 2 Splunk instance on Linux -  passwd sync</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/2-Splunk-instance-on-Linux-passwd-sync/m-p/54570#M1763</link>
      <description>&lt;P&gt;Don't you need to restart the servers every time the passwd file changes?&lt;/P&gt;</description>
      <pubDate>Tue, 12 Feb 2013 09:22:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/2-Splunk-instance-on-Linux-passwd-sync/m-p/54570#M1763</guid>
      <dc:creator>OL</dc:creator>
      <dc:date>2013-02-12T09:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: 2 Splunk instance on Linux -  passwd sync</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/2-Splunk-instance-on-Linux-passwd-sync/m-p/54571#M1764</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;Do we need to restart the splunk instances for the passwords to work?&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2014 09:26:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/2-Splunk-instance-on-Linux-passwd-sync/m-p/54571#M1764</guid>
      <dc:creator>premg</dc:creator>
      <dc:date>2014-03-11T09:26:37Z</dc:date>
    </item>
  </channel>
</rss>

