Hello all. I am a noob when it comes to progress. Also, I am not a programmer. I have been tasked to get our Progress databases, which run on a Linux platform, away from the off-line backups and try to get them ported over to an on-line back, thereby reducing our down time at night.
I got the off-line backups working OK, at least I think I do. I will include the script that I use, and will take any criticism on that part, and then you can get a feel for what I am trying to accomplish.
I am currently doing a backup on our test server and am trying to restore to the same server. I want to get a feel for the restore utility, prorest. The backups succeed fine and i have the results going into a log that I hope to get emailed to me everyday.
When I try to run the prorest utility it just doesn't seem to do anything. I do a cd to the directory to where prorest resides, /app/psc100Bq/bin, then I run "prorest ffw /dbs/onlinebkup/ffw/webstate" I am trying just to do the ffw database first, as a test. The file created by the backup is located in /dbs/onlinebkup/ffw. This is where I am stuck. I have looked in the Progress DB Admin guide and am trying to follow that.
Below is the backup script I wrote and use to backup.
Sorry for being so long winded, but I wanted to give as full a desciption as I could. Thx in advance for any help.
Rob
[FONT=r_ansi][FONT=r_ansi]## Progress Location[/FONT]
[FONT=r_ansi]DLC=/app/psc91Dq[/FONT]
[FONT=r_ansi]## Database Location[/FONT]
[FONT=r_ansi]CMDB=/dbs/cm[/FONT]
[FONT=r_ansi]IMDB=/dbs/im[/FONT]
[FONT=r_ansi]AMDB=/dbs/am[/FONT]
[FONT=r_ansi]FFWDB=/dbs/ffw[/FONT]
[FONT=r_ansi]PBSDB=/pbs/dbs[/FONT]
[FONT=r_ansi]## Backup File Location[/FONT]
[FONT=r_ansi]BKUP=/dbs/onlinebkup[/FONT]
[FONT=r_ansi]## Log location[/FONT]
[FONT=r_ansi]LOG=/dbs/onlinebkup/logs[/FONT]
[FONT=r_ansi]## Log start time[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/cm.l[/FONT]
[FONT=r_ansi]og[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/cmad[/FONT]
[FONT=r_ansi]dress.log[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/cmgl[/FONT]
[FONT=r_ansi].log[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/cmar[/FONT]
[FONT=r_ansi].log[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/cmtm[/FONT]
[FONT=r_ansi]c.log[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/cmse[/FONT]
[FONT=r_ansi]rvices.log[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/cmco[/FONT]
[FONT=r_ansi]ntext.log[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/am.l[/FONT]
[FONT=r_ansi]og[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/amad[/FONT]
[FONT=r_ansi]dress.log[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/amco[/FONT]
[FONT=r_ansi]ntext.log[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/amhi[/FONT]
[FONT=r_ansi]story.log[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/amse[/FONT]
[FONT=r_ansi]rvices.log[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/im.l[/FONT]
[FONT=r_ansi]og[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/ffww[/FONT]
[FONT=r_ansi]ebstate.log[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/pbs.[/FONT]
[FONT=r_ansi]log[/FONT]
[FONT=r_ansi]# Start online full backup of all databases[/FONT]
[FONT=r_ansi]## CM DATABASES[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $CMDB/ar $BKUP/cm/ar >> $LOG/cmar.log &[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $CMDB/cm $BKUP/cm/cm -vs 1000000 < /root/onlinebkup/cm.a[/FONT]
[FONT=r_ansi]nswers >> $LOG/cm.log &[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $CMDB/gl $BKUP/cm/gl -vs 1000000 < /root/onlinebkup/gl.a[/FONT]
[FONT=r_ansi]nswers >> $LOG/cmgl.log &[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $CMDB/cmaddress $BKUP/cm/cmaddress >> $LOG/cmaddress.log[/FONT]
[FONT=r_ansi]&[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $CMDB/context $BKUP/cm/context >> $LOG/cmcontext.log &[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $CMDB/services $BKUP/cm/services >> $LOG/cmservices.log [/FONT]
[FONT=r_ansi]&[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $CMDB/tmc $BKUP/cm/tmc >> $LOG/cmtmc.log &[/FONT]
[FONT=r_ansi]#[/FONT]
[FONT=r_ansi]## IM DATABASE[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $IMDB/im $BKUP/im/im -vs 1000000 < /root/onlinebkup/im.a[/FONT]
[FONT=r_ansi]nswers >> $LOG/im.log &[/FONT]
[FONT=r_ansi]#[/FONT]
[FONT=r_ansi]## AM DATABASES[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $AMDB/am $BKUP/am/am >> $LOG/am.log &[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $AMDB/address $BKUP/am/address >> $LOG/amaddress.log &[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $AMDB/context $BKUP/am/context >> $LOG/amcontext.log &[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $AMDB/history $BKUP/am/history >> $LOG/amhistory.log &[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $AMDB/services $BKUP/am/services >> $LOG/amservices.log [/FONT]
[FONT=r_ansi]&[/FONT]
[FONT=r_ansi]#[/FONT]
[FONT=r_ansi]## iSerivces DATABASE[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $FFWDB/webstate $BKUP/ffw/webstate >>$LOG/ffwwebstate.lo[/FONT]
[FONT=r_ansi]g &[/FONT]
[FONT=r_ansi]#[/FONT]
[FONT=r_ansi]## pbs DATABASE[/FONT]
[FONT=r_ansi]## prorest /pbs/dbs/pbs /dbs/onlinebkup/pbs/pbs is what must be used to do /pbs [/FONT]
[FONT=r_ansi]database.[/FONT]
[FONT=r_ansi]## or $PBSDB/pbs[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $PBSDB/pbs $BKUP/pbs/pbs >> $LOG/pbs.log &[/FONT]
[FONT=r_ansi]wait[/FONT]
[FONT=r_ansi]## do verify[/FONT]
[FONT=r_ansi]echo "Done with backup, begin -vp verifies, `date`"[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/cm.log[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/cmaddress.lo[/FONT]
[FONT=r_ansi]g[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/cmgl.log[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/cmar.log[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/cmtmc.log[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/cmservices.l[/FONT]
[FONT=r_ansi]og[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/cmcontext.lo[/FONT]
[FONT=r_ansi]g[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/am.log[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/amaddress.lo[/FONT]
[FONT=r_ansi]g[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/amcontext.lo[/FONT]
[FONT=r_ansi]g[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/amhistory.lo[/FONT]
[FONT=r_ansi]g[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/amservices.l[/FONT]
[FONT=r_ansi]og[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/im.log[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/ffwwebstate.[/FONT]
[FONT=r_ansi]log[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/pbs.log[/FONT]
[FONT=r_ansi]# cm DATABASE[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $CMDB/ar $BKUP/cm/ar -vp >> $LOG/cmar.log &[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $CMDB/cm $BKUP/cm/cm -vp < /root/onlinebkup/cm.answers >> $LOG/[/FONT]
[FONT=r_ansi]cm.log &[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $CMDB/gl $BKUP/cm/gl -vp < /root/onlinebkup/gl.answers >> $LOG/[/FONT]
[FONT=r_ansi]cmgl.log &[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $CMDB/cmaddress $BKUP/cm/cmaddress -vp >> $LOG/cmaddress.log &[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $CMDB/context $BKUP/cm/context -vp >> $LOG/cmcontext.log &[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $CMDB/services $BKUP/cm/services -vp >> $LOG/cmservices.log &[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $CMDB/tmc $BKUP/cm/tmc -vp >> $LOG/cmtmc.log &[/FONT]
[FONT=r_ansi]# im DATABASE[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $IMDB/im $BKUP/im/im -vp < /root/onlinebkup/im.answers >> $LOG/[/FONT]
[FONT=r_ansi]im.log &[/FONT]
[FONT=r_ansi]# am DATABASE[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $AMDB/am $BKUP/am/am -vp >> $LOG/am.log &[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $AMDB/address $BKUP/am/address -vp >> $LOG/amaddress.log &[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $AMDB/context $BKUP/am/context -vp >> $LOG/amcontext.log &[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $AMDB/history $BKUP/am/history -vp >> $LOG/amhistory.log &[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $AMDB/services $BKUP/am/services -vp >> $LOG/amservices.log &[/FONT]
[FONT=r_ansi]# iSerivces DATABASE[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $FFWDB/webstate $BKUP/ffw/webstate -vp >>$LOG/ffwwebstate.log &[/FONT]
[FONT=r_ansi]# pbs DATABASE[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $PBSDB/pbs $BKUP/pbs/pbs -vp >> $LOG/pbs.log &[/FONT]
[FONT=r_ansi]wait[/FONT]
[FONT=r_ansi]echo "DONE running onlinebkup.sh `date`"[/FONT]
[/FONT]
I got the off-line backups working OK, at least I think I do. I will include the script that I use, and will take any criticism on that part, and then you can get a feel for what I am trying to accomplish.
I am currently doing a backup on our test server and am trying to restore to the same server. I want to get a feel for the restore utility, prorest. The backups succeed fine and i have the results going into a log that I hope to get emailed to me everyday.
When I try to run the prorest utility it just doesn't seem to do anything. I do a cd to the directory to where prorest resides, /app/psc100Bq/bin, then I run "prorest ffw /dbs/onlinebkup/ffw/webstate" I am trying just to do the ffw database first, as a test. The file created by the backup is located in /dbs/onlinebkup/ffw. This is where I am stuck. I have looked in the Progress DB Admin guide and am trying to follow that.
Below is the backup script I wrote and use to backup.
Sorry for being so long winded, but I wanted to give as full a desciption as I could. Thx in advance for any help.
Rob
[FONT=r_ansi][FONT=r_ansi]## Progress Location[/FONT]
[FONT=r_ansi]DLC=/app/psc91Dq[/FONT]
[FONT=r_ansi]## Database Location[/FONT]
[FONT=r_ansi]CMDB=/dbs/cm[/FONT]
[FONT=r_ansi]IMDB=/dbs/im[/FONT]
[FONT=r_ansi]AMDB=/dbs/am[/FONT]
[FONT=r_ansi]FFWDB=/dbs/ffw[/FONT]
[FONT=r_ansi]PBSDB=/pbs/dbs[/FONT]
[FONT=r_ansi]## Backup File Location[/FONT]
[FONT=r_ansi]BKUP=/dbs/onlinebkup[/FONT]
[FONT=r_ansi]## Log location[/FONT]
[FONT=r_ansi]LOG=/dbs/onlinebkup/logs[/FONT]
[FONT=r_ansi]## Log start time[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/cm.l[/FONT]
[FONT=r_ansi]og[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/cmad[/FONT]
[FONT=r_ansi]dress.log[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/cmgl[/FONT]
[FONT=r_ansi].log[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/cmar[/FONT]
[FONT=r_ansi].log[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/cmtm[/FONT]
[FONT=r_ansi]c.log[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/cmse[/FONT]
[FONT=r_ansi]rvices.log[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/cmco[/FONT]
[FONT=r_ansi]ntext.log[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/am.l[/FONT]
[FONT=r_ansi]og[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/amad[/FONT]
[FONT=r_ansi]dress.log[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/amco[/FONT]
[FONT=r_ansi]ntext.log[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/amhi[/FONT]
[FONT=r_ansi]story.log[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/amse[/FONT]
[FONT=r_ansi]rvices.log[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/im.l[/FONT]
[FONT=r_ansi]og[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/ffww[/FONT]
[FONT=r_ansi]ebstate.log[/FONT]
[FONT=r_ansi]echo "============================ begin full online backup `date`" >> $LOG/pbs.[/FONT]
[FONT=r_ansi]log[/FONT]
[FONT=r_ansi]# Start online full backup of all databases[/FONT]
[FONT=r_ansi]## CM DATABASES[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $CMDB/ar $BKUP/cm/ar >> $LOG/cmar.log &[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $CMDB/cm $BKUP/cm/cm -vs 1000000 < /root/onlinebkup/cm.a[/FONT]
[FONT=r_ansi]nswers >> $LOG/cm.log &[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $CMDB/gl $BKUP/cm/gl -vs 1000000 < /root/onlinebkup/gl.a[/FONT]
[FONT=r_ansi]nswers >> $LOG/cmgl.log &[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $CMDB/cmaddress $BKUP/cm/cmaddress >> $LOG/cmaddress.log[/FONT]
[FONT=r_ansi]&[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $CMDB/context $BKUP/cm/context >> $LOG/cmcontext.log &[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $CMDB/services $BKUP/cm/services >> $LOG/cmservices.log [/FONT]
[FONT=r_ansi]&[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $CMDB/tmc $BKUP/cm/tmc >> $LOG/cmtmc.log &[/FONT]
[FONT=r_ansi]#[/FONT]
[FONT=r_ansi]## IM DATABASE[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $IMDB/im $BKUP/im/im -vs 1000000 < /root/onlinebkup/im.a[/FONT]
[FONT=r_ansi]nswers >> $LOG/im.log &[/FONT]
[FONT=r_ansi]#[/FONT]
[FONT=r_ansi]## AM DATABASES[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $AMDB/am $BKUP/am/am >> $LOG/am.log &[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $AMDB/address $BKUP/am/address >> $LOG/amaddress.log &[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $AMDB/context $BKUP/am/context >> $LOG/amcontext.log &[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $AMDB/history $BKUP/am/history >> $LOG/amhistory.log &[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $AMDB/services $BKUP/am/services >> $LOG/amservices.log [/FONT]
[FONT=r_ansi]&[/FONT]
[FONT=r_ansi]#[/FONT]
[FONT=r_ansi]## iSerivces DATABASE[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $FFWDB/webstate $BKUP/ffw/webstate >>$LOG/ffwwebstate.lo[/FONT]
[FONT=r_ansi]g &[/FONT]
[FONT=r_ansi]#[/FONT]
[FONT=r_ansi]## pbs DATABASE[/FONT]
[FONT=r_ansi]## prorest /pbs/dbs/pbs /dbs/onlinebkup/pbs/pbs is what must be used to do /pbs [/FONT]
[FONT=r_ansi]database.[/FONT]
[FONT=r_ansi]## or $PBSDB/pbs[/FONT]
[FONT=r_ansi]$DLC/bin/probkup online $PBSDB/pbs $BKUP/pbs/pbs >> $LOG/pbs.log &[/FONT]
[FONT=r_ansi]wait[/FONT]
[FONT=r_ansi]## do verify[/FONT]
[FONT=r_ansi]echo "Done with backup, begin -vp verifies, `date`"[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/cm.log[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/cmaddress.lo[/FONT]
[FONT=r_ansi]g[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/cmgl.log[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/cmar.log[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/cmtmc.log[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/cmservices.l[/FONT]
[FONT=r_ansi]og[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/cmcontext.lo[/FONT]
[FONT=r_ansi]g[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/am.log[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/amaddress.lo[/FONT]
[FONT=r_ansi]g[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/amcontext.lo[/FONT]
[FONT=r_ansi]g[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/amhistory.lo[/FONT]
[FONT=r_ansi]g[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/amservices.l[/FONT]
[FONT=r_ansi]og[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/im.log[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/ffwwebstate.[/FONT]
[FONT=r_ansi]log[/FONT]
[FONT=r_ansi]echo "============================ begin -vp verify `date`" >> $LOG/pbs.log[/FONT]
[FONT=r_ansi]# cm DATABASE[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $CMDB/ar $BKUP/cm/ar -vp >> $LOG/cmar.log &[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $CMDB/cm $BKUP/cm/cm -vp < /root/onlinebkup/cm.answers >> $LOG/[/FONT]
[FONT=r_ansi]cm.log &[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $CMDB/gl $BKUP/cm/gl -vp < /root/onlinebkup/gl.answers >> $LOG/[/FONT]
[FONT=r_ansi]cmgl.log &[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $CMDB/cmaddress $BKUP/cm/cmaddress -vp >> $LOG/cmaddress.log &[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $CMDB/context $BKUP/cm/context -vp >> $LOG/cmcontext.log &[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $CMDB/services $BKUP/cm/services -vp >> $LOG/cmservices.log &[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $CMDB/tmc $BKUP/cm/tmc -vp >> $LOG/cmtmc.log &[/FONT]
[FONT=r_ansi]# im DATABASE[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $IMDB/im $BKUP/im/im -vp < /root/onlinebkup/im.answers >> $LOG/[/FONT]
[FONT=r_ansi]im.log &[/FONT]
[FONT=r_ansi]# am DATABASE[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $AMDB/am $BKUP/am/am -vp >> $LOG/am.log &[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $AMDB/address $BKUP/am/address -vp >> $LOG/amaddress.log &[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $AMDB/context $BKUP/am/context -vp >> $LOG/amcontext.log &[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $AMDB/history $BKUP/am/history -vp >> $LOG/amhistory.log &[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $AMDB/services $BKUP/am/services -vp >> $LOG/amservices.log &[/FONT]
[FONT=r_ansi]# iSerivces DATABASE[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $FFWDB/webstate $BKUP/ffw/webstate -vp >>$LOG/ffwwebstate.log &[/FONT]
[FONT=r_ansi]# pbs DATABASE[/FONT]
[FONT=r_ansi]$DLC/bin/prorest $PBSDB/pbs $BKUP/pbs/pbs -vp >> $LOG/pbs.log &[/FONT]
[FONT=r_ansi]wait[/FONT]
[FONT=r_ansi]echo "DONE running onlinebkup.sh `date`"[/FONT]
[/FONT]