<?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 Collecting performance data from many sites? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/collecting-performance-data-from-many-sites/m-p/2581844#M924318</link>
    <description>We have some homegrown scripts to collect "sar" performance data from many sites.  The scripts often fail to retrieve data from some sites because of a problem with the FTP mechanism used, eg. wrong password, too many invalid password attempts, etc?  Is there a way that we can retrieve the data using another mechanism like sockets so we bypass having to use a password with each site?  For security reasons, we cannot use email to transfer the data.  Does HP-UX have any built-in features or programs that we could use to solve our data transfer problems?  If not, what are your experiences with free tools like rsync that we might use to solve the problem?&lt;BR /&gt;Mott Given, mgiven@dsdc.dla.mil</description>
    <pubDate>Wed, 19 Sep 2001 16:59:58 GMT</pubDate>
    <dc:creator>Mott Given</dc:creator>
    <dc:date>2001-09-19T16:59:58Z</dc:date>
    <item>
      <title>Collecting performance data from many sites?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/collecting-performance-data-from-many-sites/m-p/2581844#M924318</link>
      <description>We have some homegrown scripts to collect "sar" performance data from many sites.  The scripts often fail to retrieve data from some sites because of a problem with the FTP mechanism used, eg. wrong password, too many invalid password attempts, etc?  Is there a way that we can retrieve the data using another mechanism like sockets so we bypass having to use a password with each site?  For security reasons, we cannot use email to transfer the data.  Does HP-UX have any built-in features or programs that we could use to solve our data transfer problems?  If not, what are your experiences with free tools like rsync that we might use to solve the problem?&lt;BR /&gt;Mott Given, mgiven@dsdc.dla.mil</description>
      <pubDate>Wed, 19 Sep 2001 16:59:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/collecting-performance-data-from-many-sites/m-p/2581844#M924318</guid>
      <dc:creator>Mott Given</dc:creator>
      <dc:date>2001-09-19T16:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: Collecting performance data from many sites?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/collecting-performance-data-from-many-sites/m-p/2581845#M924319</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;I do something similar here.  I run a Linux box that runs a Perl script and uses the Net::FTP module to handle all the ftp stuff.  It works great.  Just one way to do it.&lt;BR /&gt;&lt;BR /&gt;JP&lt;BR /&gt;</description>
      <pubDate>Wed, 19 Sep 2001 17:10:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/collecting-performance-data-from-many-sites/m-p/2581845#M924319</guid>
      <dc:creator>John Poff</dc:creator>
      <dc:date>2001-09-19T17:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: Collecting performance data from many sites?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/collecting-performance-data-from-many-sites/m-p/2581846#M924320</link>
      <description>Don't know if this will help, but we use Big Brother along with LARRD for this sort of thing...it gives nice web based reports on system information.  BB uses its own little daemon to pass information back and forth.&lt;BR /&gt;&lt;BR /&gt;Alternatively, you could write a similar daemon that just passes messages back and forth...&lt;BR /&gt;&lt;BR /&gt;-Santosh</description>
      <pubDate>Wed, 19 Sep 2001 17:44:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/collecting-performance-data-from-many-sites/m-p/2581846#M924320</guid>
      <dc:creator>Santosh Nair_1</dc:creator>
      <dc:date>2001-09-19T17:44:47Z</dc:date>
    </item>
    <item>
      <title>Re: Collecting performance data from many sites?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/collecting-performance-data-from-many-sites/m-p/2581847#M924321</link>
      <description>Yes you could use a socket program or perhaps a tool like rdist.  We use OpenSSH's scp to handle tasks like this so everything is encypted and we don't have to pass passwords around.  It takes a bit of work to put the public keys in the authorized_keys file of the host you are sending to, but it works well for us.</description>
      <pubDate>Wed, 19 Sep 2001 18:34:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/collecting-performance-data-from-many-sites/m-p/2581847#M924321</guid>
      <dc:creator>Bernie Vande Griend</dc:creator>
      <dc:date>2001-09-19T18:34:09Z</dc:date>
    </item>
    <item>
      <title>Re: Collecting performance data from many sites?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/collecting-performance-data-from-many-sites/m-p/2581848#M924322</link>
      <description>Well here's a thought.&lt;BR /&gt;Why don't you put your scripts out on those machines than on your machine set up a script to run those scripts remotely...you could even set those remote scripts to write the data back to your server. &lt;BR /&gt;To give you an idea:&lt;BR /&gt;script on remote called /my_scripts/sar.sh&lt;BR /&gt;     sar -w 5 60 &amp;gt; sar.report&lt;BR /&gt;     rcp sar.report &lt;YOUR_SERVER&gt;:/dir/sub_dir&lt;BR /&gt;&lt;BR /&gt;script on your_server called run_my_sars&lt;BR /&gt;     remsh remote_server ./my_scripts/sar.sh&lt;BR /&gt;&lt;BR /&gt;OK...this isn't fancy, but you get the idea. Remember to set up your .rhosts for when you want to run it.&lt;BR /&gt;&lt;BR /&gt;Just a thought,&lt;BR /&gt;Rita&lt;/YOUR_SERVER&gt;</description>
      <pubDate>Wed, 19 Sep 2001 18:34:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/collecting-performance-data-from-many-sites/m-p/2581848#M924322</guid>
      <dc:creator>Rita C Workman</dc:creator>
      <dc:date>2001-09-19T18:34:31Z</dc:date>
    </item>
  </channel>
</rss>

