Thank you for your assistance, Veronica. But I'm running with Zimbra Open Source, so I don't have the way to backup using zmbackup. I'm using a simple backup like this
#!/bin/bash
# Zimbra Backup Script
# Requires ncftp to run
# This script is intended to run from the crontab as root
# Date outputs and su vs sudo corrections by other contributors, thanks, sorry I don't have names to attribute!
# Free to use and free of any warranty! Daniel W. Martin, 5 Dec 2008
backuplog="/Data/Backup/backup.log"
# Outputs the time the backup started, for log/tracking purposes
echo "===========================================" >> "$backuplog"
echo Time backup started = $(date +%T) >> "$backuplog"
before="$(date +%s)"
# Live sync before stopping Zimbra to minimize sync time with the services down
# Comment out the following line if you want to try single cold-sync only
rsync -avHK --delete /opt/zimbra/ /Data/Backup/zimbra
# which is the same as: /opt/zimbra /backup
# Including --delete option gets rid of files in the dest folder that don't exist at the src
# this prevents logfile/extraneous bloat from building up overtime.
# Now we need to shut down Zimbra to rsync any files that were/are locked
# whilst backing up when the server was up and running.
before2="$(date +%s)"
# Stop Zimbra Services
su - zimbra -c"/opt/zimbra/bin/zmcontrol stop"
sleep 15
# Kill any orphaned Zimbra processes
kill -9 `ps -u zimbra -o "pid="`
# Only enable the following command if you need all Zimbra user owned
# processes to be killed before syncing
# ps auxww | awk '{print $1" "$2}' | grep zimbra | kill -9 `awk '{print $2}'`
# Sync to backup directory
rsync -avHK --delete /opt/zimbra/ /Data/Backup/zimbra
# Restart Zimbra Services
su - zimbra -c "/opt/zimbra/bin/zmcontrol start"
# Calculates and outputs amount of time the server was down for
after="$(date +%s)"
elapsed="$(expr $after - $before2)"
hours=$(($elapsed / 3600))
elapsed=$(($elapsed - $hours * 3600))
minutes=$(($elapsed / 60))
seconds=$(($elapsed - $minutes * 60))
echo Server was down for: "$hours hours $minutes minutes $seconds seconds" >> "$backuplog"
# Create a txt file in the backup directory that'll contains the current Zimbra
# server version. Handy for knowing what version of Zimbra a backup can be restored to.
su - zimbra -c "zmcontrol -v > /Data/Backup/zimbra/conf/zimbra_version.txt"
# or examine your /opt/zimbra/.install_history
# Display Zimbra services status
echo Displaying Zimbra services status...
su - zimbra -c "/opt/zimbra/bin/zmcontrol status"
# Create archive of backed-up directory for offsite transfer
# cd /backup/zimbra
tar -zcvf /Data/Backup/zimbra.backup-$(date +"%Y-%m-%d").tgz -C /Data/Backup/zimbra .
# Outputs the time the backup finished
echo Time backup finished = $(date +%T) >> "$backuplog"
# Calculates and outputs total time taken
after="$(date +%s)"
elapsed="$(expr $after - $before)"
hours=$(($elapsed / 3600))
elapsed=$(($elapsed - $hours * 3600))
minutes=$(($elapsed / 60))
seconds=$(($elapsed - $minutes * 60))
echo Time taken: "$hours hours $minutes minutes $seconds seconds" >> "$backuplog"
Anyway I can run this backup.sh directly successful, the problem is when I put them in crontab using "crontab -e" like this
0 0 * * * /Data/Backup/backup.sh -confirm
and it can not backup successful, it seems to be failed at this command
tar -zcvf /Data/Backup/zimbra.backup-$(date +"%Y-%m-%d").tgz -C /Data/Backup/zimbra .
Could you please to look over them and give me how to fix this, I'm so appriciate with any of your helps
Thanks |