|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
------------------------------------------------------------------------------ Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_d2d_feb
_______________________________________________ Mifos-issues mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mifos-issues

Backing up to Amazon S3 buckets using Backup manager would work for the simplest case
Commands:
sudo apt-get install backup-manager
//Modify Backup manager configuration file
sudo nano /etc/backup-manager.conf
//Locate and change the following properties with you actual S3 credentials
Make the following changes to it
export BM_ARCHIVE_METHOD=”mysql”
export BM_MYSQL_DATABASES=”mifos“ (Database name)
export BM_MYSQL_ADMINLOGIN="root" (your database user name)
export BM_MYSQL_ADMINPASS=”password“ (database password)
export BM_UPLOAD_METHOD=”s3"
export BM_UPLOAD_S3_DESTINATION=”s3bucketname“ (name of your s3 bucket)
export BM_UPLOAD_S3_ACCESS_KEY=”s3accesskey“ (found in your amazon account) export BM_UPLOAD_S3_SECRET_KEY=”s3secretkey“ (found in your amazon account)
Cron Job for backups
Command:
sudo crontab -e
//Schedule the job to run daily at 4 am in the morning
4 2 * * * /usr/sbin/backup-manager