Hi all,
I'm having two P5 570 servers that are running 12 LPARs (6 each). I'm trying to do a (data) backup job and i'm connecting the tape drive to one LPAR and by using NFS mounts, i manage to backup the data on the other LPARs. The script i wrote is this:
df on the LPAR with the tape connected shows this:
These are mounted filesystem from the other LPAR (called s1cdbp).
Now my problem occur when there is something wrong with the s1cdbp LPAR (its a cluster LPAR), the script will fail because it can't find those mounted filesystems!
Is there a better way to do the script and backup those filesystem without using nfs?
Regards,
Khalid
I'm having two P5 570 servers that are running 12 LPARs (6 each). I'm trying to do a (data) backup job and i'm connecting the tape drive to one LPAR and by using NFS mounts, i manage to backup the data on the other LPARs. The script i wrote is this:
Code:
find /edms_bkup \
/pmdb_bkup \
/engp_bkup \
/pcms_bkup \
/gnrl_bkup \
/pas_bkup \
/cdb_bkup \
/omsp_bkup \
/usr/cimage/shared \
/usr/cimage/mtserv511 \
-print > /tmp/daily_backup.list
cat /tmp/daily_backup.list | backup -iqf/dev/rmt0.1
df on the LPAR with the tape connected shows this:
Code:
s1cdbp:/pcms_bkup 3932160 2983952 25% 10 1% /pcms_bkup
s1cdbp:/gnrl_bkup 2097152 2010440 5% 9 1% /gnrl_bkup
s1cdbp:/pas_bkup 6029312 2733184 55% 10 1% /pas_bkup
s1cdbp:/cdb_bkup 14155776 5976592 58% 10 1% /cdb_bkup
s1cdbp:/omsp_bkup 3932160 2286112 42% 100 1% /omsp_bkup
These are mounted filesystem from the other LPAR (called s1cdbp).
Now my problem occur when there is something wrong with the s1cdbp LPAR (its a cluster LPAR), the script will fail because it can't find those mounted filesystems!
Is there a better way to do the script and backup those filesystem without using nfs?
Regards,
Khalid