<?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: Cannot append data to that file in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/cannot-append-data-to-that-file/m-p/3555380#M225697</link>
    <description>There's a script called sysstat located in /etc/cron.d to execute every 10 minutes.  I have no clue on who had put this script in there.  I went in and comment it out for now, so it won't try to run every 10 minutes.  &lt;BR /&gt;&lt;BR /&gt;Is this something was setup by the system by default?  If so, how do I set this up to run correctly?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Ian</description>
    <pubDate>Wed, 01 Jun 2005 14:26:25 GMT</pubDate>
    <dc:creator>Ian Derringer</dc:creator>
    <dc:date>2005-06-01T14:26:25Z</dc:date>
    <item>
      <title>Cannot append data to that file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cannot-append-data-to-that-file/m-p/3555374#M225691</link>
      <description>Greetings,&lt;BR /&gt;I am getting this e-mail from root with a subject line 'Cron &lt;ROOT&gt; /usr/lib/sa/sa1 1 1 Cannot append data to that file' - Every 10 minutes.  What does this mean and how do I fix this?  I checked the permission of sa1 and it belongs to root with plenty of permissions.&lt;BR /&gt;&lt;BR /&gt;Please help.&lt;BR /&gt;&lt;BR /&gt;Thank you in advance.&lt;BR /&gt;Ian&lt;BR /&gt;&lt;/ROOT&gt;</description>
      <pubDate>Wed, 01 Jun 2005 00:30:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cannot-append-data-to-that-file/m-p/3555374#M225691</guid>
      <dc:creator>Ian Derringer</dc:creator>
      <dc:date>2005-06-01T00:30:12Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot append data to that file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cannot-append-data-to-that-file/m-p/3555375#M225692</link>
      <description>It sounds like this is a linux system. Cron email is coming from /etc/cron.d/sysstat cron job, which executes sar performance data collection script (sa1) every ten minutes.&lt;BR /&gt;&lt;BR /&gt;*/10 * * * * root /usr/lib/sa/sa1 1 1&lt;BR /&gt;&lt;BR /&gt;The script tries to create a file in /var/log/sa directory.&lt;BR /&gt;&lt;BR /&gt;Please run the script manually and post the output.&lt;BR /&gt;&lt;BR /&gt;# sh -x /usr/lib/sa/sa1 1 1&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 01 Jun 2005 01:00:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cannot-append-data-to-that-file/m-p/3555375#M225692</guid>
      <dc:creator>Ermin Borovac</dc:creator>
      <dc:date>2005-06-01T01:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot append data to that file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cannot-append-data-to-that-file/m-p/3555376#M225693</link>
      <description>&lt;BR /&gt;i believe sa1 is part of sar utility for taking system statistics. from the error message what you are getting, the reason could be that hard disk is full and data can not be appended on to the log file.&lt;BR /&gt;&lt;BR /&gt;or there is maximum file size set and the log file is trying to grow beyond that.&lt;BR /&gt;&lt;BR /&gt;the log files are most probably at /var/log/sa&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;Gopi</description>
      <pubDate>Wed, 01 Jun 2005 01:01:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cannot-append-data-to-that-file/m-p/3555376#M225693</guid>
      <dc:creator>Gopi Sekar</dc:creator>
      <dc:date>2005-06-01T01:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot append data to that file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cannot-append-data-to-that-file/m-p/3555377#M225694</link>
      <description>Hi,&lt;BR /&gt;This is the error message when I tried to execute the command you've recommended, &lt;BR /&gt;bash: Cannot: command not found&lt;BR /&gt;&lt;BR /&gt;I also noticed that my cron jobs are off schedule but it's running though.&lt;BR /&gt;&lt;BR /&gt;Any ideas?&lt;BR /&gt;&lt;BR /&gt;Thanks!!&lt;BR /&gt;&lt;BR /&gt;Ian</description>
      <pubDate>Wed, 01 Jun 2005 08:34:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cannot-append-data-to-that-file/m-p/3555377#M225694</guid>
      <dc:creator>Ian Derringer</dc:creator>
      <dc:date>2005-06-01T08:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot append data to that file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cannot-append-data-to-that-file/m-p/3555378#M225695</link>
      <description>Ian --&lt;BR /&gt;&lt;BR /&gt;Check your crontab and whatever command is in there to run every 10 minutes you should execute doing:&lt;BR /&gt;&lt;BR /&gt;sh -x &lt;COMMAND&gt;&lt;BR /&gt;&lt;BR /&gt;This will give you details to where it's failing.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;&lt;BR /&gt;Kent M. Ostby&lt;BR /&gt;&lt;/COMMAND&gt;</description>
      <pubDate>Wed, 01 Jun 2005 08:45:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cannot-append-data-to-that-file/m-p/3555378#M225695</guid>
      <dc:creator>Kent Ostby</dc:creator>
      <dc:date>2005-06-01T08:45:03Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot append data to that file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cannot-append-data-to-that-file/m-p/3555379#M225696</link>
      <description>&lt;BR /&gt;most likely either /usr/lib/sa/sa1 is missing in your system (either removed or corrupted) or  one of the application which sa1 is using is missing from the system.&lt;BR /&gt;&lt;BR /&gt;was this job working earlier without any problems? &lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Gopi</description>
      <pubDate>Wed, 01 Jun 2005 08:48:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cannot-append-data-to-that-file/m-p/3555379#M225696</guid>
      <dc:creator>Gopi Sekar</dc:creator>
      <dc:date>2005-06-01T08:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot append data to that file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cannot-append-data-to-that-file/m-p/3555380#M225697</link>
      <description>There's a script called sysstat located in /etc/cron.d to execute every 10 minutes.  I have no clue on who had put this script in there.  I went in and comment it out for now, so it won't try to run every 10 minutes.  &lt;BR /&gt;&lt;BR /&gt;Is this something was setup by the system by default?  If so, how do I set this up to run correctly?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Ian</description>
      <pubDate>Wed, 01 Jun 2005 14:26:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cannot-append-data-to-that-file/m-p/3555380#M225697</guid>
      <dc:creator>Ian Derringer</dc:creator>
      <dc:date>2005-06-01T14:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot append data to that file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cannot-append-data-to-that-file/m-p/3555381#M225698</link>
      <description>Hi Ian,&lt;BR /&gt;&lt;BR /&gt;      I happened to find the same kind of issues faced by many on the net.&lt;BR /&gt;&lt;BR /&gt;      Please check this link..&lt;BR /&gt;and see whether it applies to you aswell..&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=64994" target="_blank"&gt;https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=64994&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;bugzilla.redhat.com/bugzilla/show_bug.cgi?id=64994&lt;BR /&gt;&lt;BR /&gt;Please chack the 3rd comment in the above url..&lt;BR /&gt;&lt;BR /&gt;Regards.</description>
      <pubDate>Wed, 01 Jun 2005 20:39:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cannot-append-data-to-that-file/m-p/3555381#M225698</guid>
      <dc:creator>Senthil Kumar .A_1</dc:creator>
      <dc:date>2005-06-01T20:39:10Z</dc:date>
    </item>
  </channel>
</rss>

