We use the script below, I believe that all the binaries should be in
two locations, the base files path and then your 'local' customizations
path.  <br>
<br>
#!/bin/bash<br>
#<br>
# backupRT.sh<br>
#<br>
# Runs a file level backup of the contents of the following<br>
# directories:<br>
#<br>
# /usr/local/share/request-tracker3.4<br>
# /usr/share/request-tracker3.4<br>
#<br>
# Into a file named rtappbak-{date}.tar.gz<br>
#<br>
# Last Revision: August 11, 2005<br>
#<br>
<br>
<br>
curday=`date +"%Y%m%d%H%M%S"`<br>
prefn="rtappbak-"<br>
fullfn=$prefn$curday.tgz<br>
rtbakCHANGES_FILE=/root/tmp/rtbakfiles<br>
# You can change this to another directory for the tmp files.<br>
#  I don't like to dump in /tmp<br>
fullFILENAME=`pwd`$fullfn<br>
<br>
# do the backup<br>
tar cvzf $fullfn /usr/local/share/request-tracker3.4 /usr/share/request-tracker$<br>
<br>
#get the file list and send to $rtbakCHANGES_FILE<br>
tar tvzf $fullfn > $rtbakCHANGES_FILE<br>
<br>
<br><br><div><span class="gmail_quote">On 9/23/05, <b class="gmail_sendername">Bruce Rudd</b> <<a href="mailto:Bruce.Rudd@datadirect.com">Bruce.Rudd@datadirect.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Thanks,<br><br>That will help be back up the data but I guess what I mean to say is<br>that I also need a way to back up the binaries.  I am not sure where all<br>the pieces may be hiding that I need to back up.<br><br>Regards,
<br>Bruce Rudd<br>Solutions Engineer<br>DataDirect Technologies<br><a href="http://www.DataDirect.com">www.DataDirect.com</a><br><br>Check and log cases on the web with SupportLink Online<br>Interact with Peers and exchange information with our Developer's Forums
<br>You may reach a SupportLink Engineer at (888) 332-6797<br><br><br><br>-----Original Message-----<br>From: <a href="mailto:rt-users-bounces@lists.bestpractical.com">rt-users-bounces@lists.bestpractical.com</a><br>[mailto:
<a href="mailto:rt-users-bounces@lists.bestpractical.com">rt-users-bounces@lists.bestpractical.com</a>] On Behalf Of Camron W.<br>Fox<br>Sent: Thursday, September 22, 2005 7:22 PM<br>To: <a href="mailto:rt-users@lists.bestpractical.com">
rt-users@lists.bestpractical.com</a><br>Subject: Re: [rt-users] Backing up the system<br><br>Bruce Rudd wrote:<br>> I have RT3 and MySQL installed on RHEL 4 and this is all I use this<br>> server for.  Does anyone have any guidelines on what I need to be
<br>> backing up to prevent losing my data if there is a crash?<br>><br>><br>><br><br>Bruce,<br><br>        We have RT3.4.4, MySQL Ver 4.1.9 on RHEL3U5. We use:<br><br>/usr/bin/mysqldump --add-drop-table --single-transaction --quick $DB >>
<br>$FILENAME<br><br>        for our nightly backups.<br><br>Best Regards,<br>Camron<br><br>Camron W. Fox<br>Hilo Office<br>High Performance Computing Group<br>Fujitsu America, INC.<br>E-mail:         <a href="mailto:cwfox@us.fujitsu.com">
cwfox@us.fujitsu.com</a><br>Phone:          (808) 934-4102<br>Cell:           (808) 937-5026<br><br>_______________________________________________<br><a href="http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users">
http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users</a><br><br>Be sure to check out the RT Wiki at <a href="http://wiki.bestpractical.com">http://wiki.bestpractical.com</a><br><br>Buy your copy of our new book, RT Essentials, today!
<br><br>Download a free sample chapter from <a href="http://rtbook.bestpractical.com">http://rtbook.bestpractical.com</a><br><br><br>_______________________________________________<br><a href="http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users">
http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users</a><br><br>Be sure to check out the RT Wiki at <a href="http://wiki.bestpractical.com">http://wiki.bestpractical.com</a><br><br>Buy your copy of our new book, RT Essentials, today!
<br><br>Download a free sample chapter from <a href="http://rtbook.bestpractical.com">http://rtbook.bestpractical.com</a><br></blockquote></div><br>