<?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: fbackup write error in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-write-error/m-p/3798065#M266065</link>
    <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;the backup is dead, sure as anything in life. the error message may be truncated, thats not uncommon.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
    <pubDate>Wed, 31 May 2006 16:35:52 GMT</pubDate>
    <dc:creator>Steven E. Protter</dc:creator>
    <dc:date>2006-05-31T16:35:52Z</dc:date>
    <item>
      <title>fbackup write error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-write-error/m-p/3798064#M266064</link>
      <description>We have an rp2430 that is getting an fbackup write error when run at night from an at job.  The thing is the permissions are wide open, so is there any other reason it would not be able to write to a file?  I get the following error:&lt;BR /&gt;&lt;BR /&gt;fbackup(1004): session begins on Sun May 28 23:10:06 2006&lt;BR /&gt;fbackup(3024): writing volume 1 to the output file /JDIS/JDISONLINE/DAILY&lt;BR /&gt;fbackup(3014): WRITE ERROR: could not write to the output file&lt;BR /&gt;fbackup(3004): writer aborting&lt;BR /&gt;fbackup(1002): Backup did not complete : Reader or Writer process exit&lt;BR /&gt;&lt;BR /&gt;The following is the permissions:&lt;BR /&gt;&lt;BR /&gt;bortan01# ls -ld /JDIS/JDISONLINE&lt;BR /&gt;drwxrwxrwx   2 root       sys           8192 May 31 13:03 /JDIS/JDISONLINE&lt;BR /&gt;&lt;BR /&gt;bortan01# ll /JDIS/JDISONLINE/&lt;BR /&gt;total 12219072&lt;BR /&gt;-rw-rw-rw-   1 root       group      2141918491 May 30 22:10 DAILY.Z&lt;BR /&gt;-rwxrwxrwx   1 root     group       295760 May 30 22:10 DAILY.index&lt;BR /&gt;-rw-rw-rw-   1 root       group      4113913715 Apr 29 20:19 MONTHLYDATA01020304&lt;BR /&gt;0506070811.Z&lt;BR /&gt;-rwxrwxrwx   1 sys999     group         1625 Feb 20 09:09 jdisload_online&lt;BR /&gt;&lt;BR /&gt;There is a DAILY.Z, but no DAILY, so I don't understand why it would not be able to write to it.&lt;BR /&gt;</description>
      <pubDate>Wed, 31 May 2006 16:05:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-write-error/m-p/3798064#M266064</guid>
      <dc:creator>Dee_3</dc:creator>
      <dc:date>2006-05-31T16:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: fbackup write error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-write-error/m-p/3798065#M266065</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;the backup is dead, sure as anything in life. the error message may be truncated, thats not uncommon.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Wed, 31 May 2006 16:35:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-write-error/m-p/3798065#M266065</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2006-05-31T16:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: fbackup write error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-write-error/m-p/3798066#M266066</link>
      <description>Sounds like a bad tape.  How many times have you used it?  Cleaned the tape drive recently?</description>
      <pubDate>Wed, 31 May 2006 20:08:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-write-error/m-p/3798066#M266066</guid>
      <dc:creator>Michael Steele_2</dc:creator>
      <dc:date>2006-05-31T20:08:09Z</dc:date>
    </item>
    <item>
      <title>Re: fbackup write error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-write-error/m-p/3798067#M266067</link>
      <description>It appears that you are writing to a file, not to a tape. Because you did not indicate whether this script is running as root or another user, it isn't possible to determine any permission problems. However, the permissions are really messed up (probably caused by a sysadmin trying to make the backup work).&lt;BR /&gt; &lt;BR /&gt;First, the permissions drwxrwxrwx (777) are a massive security problem. Same with -rw-rw-rw-. If this data is important, NEVER allow every user on the computer to trash the files. Also, datafiles (like DAILY.index and jdisload_online) should NEVER have the execute bit set as they are not executable. Now having the execute bit set is not a security problem, it is just bad practice.&lt;BR /&gt; &lt;BR /&gt;Now you cannot determine access rights to a file or directory until you know the permission(s) of the entire path. Missing from your list is the /JDIS directory. Now it may be 777 also (also a poor setting) and since you've tried changing the permissions and it does not work, the problem is not permissions. Change them back. Assuming root is running this backup, the minimum permissions should be:&lt;BR /&gt; &lt;BR /&gt;(chmod 755 /JDIS /JDIS/JDISONLINE&lt;BR /&gt;bortan01# ls -ld /JDIS/JDISONLINE&lt;BR /&gt;drwxr-xr-x 2 root sys 8192 May 31 13:03 /JDIS/JDISONLINE&lt;BR /&gt;&lt;BR /&gt;(chmod 644 DAILY.Z DAILY.index MONTHLYDATA01020304 jdisload_online&lt;BR /&gt;bortan01# ll /JDIS/JDISONLINE/&lt;BR /&gt;total 12219072&lt;BR /&gt;-rw-r--r-- 1 root group 2141918491 May 30 22:10 DAILY.Z&lt;BR /&gt;-rw-r--r-- 1 root group 295760 May 30 22:10 DAILY.index&lt;BR /&gt;-rw-r--r-- 1 root group 4113913715 Apr 29 20:19 MONTHLYDATA01020304&lt;BR /&gt;0506070811.Z&lt;BR /&gt;-rw-r--r-- 1 sys999 group 1625 Feb 20 09:09 jdisload_online&lt;BR /&gt; &lt;BR /&gt;Now this assumes that users are allowed to look at this data. If not, change the chmod 644 to 600.&lt;BR /&gt; &lt;BR /&gt;AS far as the problem, use this command:&lt;BR /&gt; &lt;BR /&gt;bdf /JDIS/JDISONLINE&lt;BR /&gt; &lt;BR /&gt;You may not have enough space on the lvol to save the files. fbackup is more comkfortable writing to a real tape so error messages are not complete for disk problems. The WRITE error probably means: filesystem full&lt;BR /&gt; &lt;BR /&gt;Verify the filesystem problem by looking at /var/adm/syslog/syslog.log</description>
      <pubDate>Wed, 31 May 2006 21:51:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-write-error/m-p/3798067#M266067</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2006-05-31T21:51:51Z</dc:date>
    </item>
  </channel>
</rss>

