redmine DB 백업, 파일 백업 스크립트

 

redmine DB 백업, 파일 백업 스크립트

#!/bin/bash
DATETIME=$(date +"%Y%m%d%H%M")

# DB backup
mysqldump -u root -p******* redmine_dbname | gzip > /redmine_backup_dir/$DATETIME.sql.gz

# file backup
rsync -avz --delete /redmine_install_dir/files /redmine_backup_dir/

# delete old files
find /redmine_backup_dir/ -name *.gz -mtime +90 -delete

스크립트를 crontab 등록하면 끝~

crontab 사용법 : http://apollo89.com/wordpress/?p=186
mysql 백업 / 복구 / 재시작 / 한글 깨진 문제 해결(euc-kr) : apollo89.com/wordpress/?p=324
rsync 사용법 : http://apollo89.com/wordpress/?p=196

 

This entry was posted in SCM/ITS, System and tagged , , , , , . Bookmark the permalink.

댓글 남기기