ANS1228E, ANS4007E, and ANS1587W, Oh my!

jrpatton

Newcomer
Joined
Dec 21, 2011
Messages
2
Reaction score
0
Points
0
Hello,

We are getting a handful of errors with our backup. Some are caused by the files/directories being hidden.

First, my system info:
Code:
IBM Tivoli Storage ManagerCommand Line Backup-Archive Client Interface
  Client Version 6, Release 2, Level 2.0
  Client date/time: 12/21/2011 12:35:09
(c) Copyright by IBM Corporation and other(s) 1990, 2010. All Rights Reserved.


Node Name: MSEAS
Session established with server BACKUP-L: Linux/x86_64
  Server Version 6, Release 2, Level 2.30
  Server date/time: 12/21/2011 12:35:09  Last access: 12/21/2011 12:25:50

# uname -a
Linux mseas.mit.edu 2.6.18-92.1.22.el5 #1 SMP Tue Dec 16 11:57:43 EST 2008 x86_64 x86_64 x86_64 GNU/Linux
# cat /etc/redhat-release
CentOS release 5.2 (Final)


Here is the last bit of my tsmerror.log

Code:
12/21/2011 08:03:21 ANS1228E Sending of object '/gdata/projects/awacs/PE_forcing/2006/Sep27/PJH01/gmeta_ccnt_rad' failed
12/21/2011 08:03:21 ANS4007E Error processing '/gdata/projects/awacs/PE_forcing/2006/Sep27/PJH
01/gmeta_ccnt_rad': access to the object is denied
12/21/2011 08:03:21 ANS1228E Sending of object '/gdata/projects/awacs/PE_forcing/2006/Sep27/PJ
H01/gmeta_ccnt_wstr' failed
12/21/2011 08:03:21 ANS4007E Error processing '/gdata/projects/awacs/PE_forcing/2006/Sep27/PJH
01/gmeta_ccnt_wstr': access to the object is denied
12/21/2011 08:55:30 ANS1587W  I/O error reading file attributes for: /gdata/projects/philex/Ma
tlab/VelFM/resetvbotwt.m~. errno = 22, Invalid argument
12/21/2011 09:03:39 ANS0361I DIAG: TransErrno: Unexpected error from lstat, errno = 117
12/21/2011 09:03:39 ANS1999E Incremental processing of '/gdata' stopped.


12/21/2011 09:03:39 ANS1028S An internal program error occurred.
12/21/2011 09:03:39 ANS1512E Scheduled event 'TUE-2400' failed.  Return code = 12.

Here's the permission readout of that last access denied failure file:

Code:
# ls -l gmeta_ccnt_wstr
-rw-rw-r-- 1 wgleslie awacs 42838560 Dec 19 10:55 gmeta_ccnt_wstr

And here is my attempt to leave out files ending with tildes, beginning with periods, and the /var/log directory

Code:
# cat inclexcl.txt
exclude /var/log/*
exclude "/gdata/.../.*"
exclude.dir "/gdata/.../.*"
exclude "/gdata/.../*~"

Any idea why I'm getting the errors? Any help is greatly appreciated.

Jeremy
 
Last edited:
Hi,

Are any of these files residing on a nfs/cifs/smb share? If so, then make sure the backup user (root?) has access to the files.
 
Hey,

Sorry it has taken me a while to get back to you. I came down with a flu. I'll try not to spread it on the forum.

@Trident
The /gdata partition is a gluster file system. root should have access to everything on it. Also root is the backup user.

Code:
# df -TFilesystem    Type   1K-blocks      Used Available Use% Mounted on
/dev/sda1     ext3    15872604  12290728   2762564  82% /
/dev/sda2     ext3    15872636  13718260   1335064  92% /var
/dev/sda3     ext3    15872636    290840  14762484   2% /tmp
/dev/sda6     ext3    89263748  66304632  18424772  79% /state/partition1
tmpfs        tmpfs    12344884         0  12344884   0% /dev/shm
tmpfs        tmpfs     6027864     55680   5972184   1% /var/lib/ganglia/rrds
/dev/sdb      ext3   2403044780 1788159516 492817552  79% /srv/www
glusterfs#mseas-data:/gdata
              fuse   58301389568 41993640832 16307748736  73% /gdata
mseas-data:/home/wgleslie
               nfs   3170680256 2830709120 178909856  95% /home/wgleslie
mseas-data:/home/kyigit
               nfs   3170680256 2830709120 178909856  95% /home/kyigit
/dev/hdb   iso9660       16178     16178         0 100% /media/Chelsio S310X
mseas-data:/home/mirabito
               nfs   3170680256 2830709120 178909856  95% /home/mirabito
mseas-data:/home/akashp
               nfs   3170680256 2830709120 178909856  95% /home/akashp
mseas-data:/home/ltapovan
               nfs   3170680256 2830709120 178909856  95% /home/ltapovan
mseas-data:/home/mpuecker
               nfs   3170680256 2830709120 178909856  95% /home/mpuecker
mseas-data:/home/ce107
               nfs   3170680256 2830709120 178909856  95% /home/ce107


@mikeymac
en_US is already listed in the locales
Code:
# locale -a | grep "en_US*"en_US
en_US.iso88591
en_US.iso885915
en_US.utf8

# /etc/locale
LANG=en_US.iso885915
LC_CTYPE="en_US.iso885915"
LC_NUMERIC="en_US.iso885915"
LC_TIME="en_US.iso885915"
LC_COLLATE="en_US.iso885915"
LC_MONETARY="en_US.iso885915"
LC_MESSAGES="en_US.iso885915"
LC_PAPER="en_US.iso885915"
LC_NAME="en_US.iso885915"
LC_ADDRESS="en_US.iso885915"
LC_TELEPHONE="en_US.iso885915"
LC_MEASUREMENT="en_US.iso885915"
LC_IDENTIFICATION="en_US.iso885915"
LC_ALL=
 
Last edited:
Back
Top