Changes between Version 1 and Version 2 of SCS_BACKUP_R3


Ignore:
Timestamp:
01/26/09 15:34:34 (16 years ago)
Author:
todor
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SCS_BACKUP_R3

    v1 v2  
    2929 
    3030= Design = 
     31 * Check if the previous back up contains all needed information for restore in the implementation phase. 
     32 * Because of its importance the postgres database must be set up to make periodical back ups 
     33  * add following in the crontab 
     34{{{ 
     35c# m h  dom mon dow   command 
     360 3 * * sun sh /home/scs/backup/backup.sh 
     370 9 * * *   sh /home/scs/backup/psql_backup.sh 
     38}}} 
     39 * Create following script psql_backup.sh that backs up postgres database: 
     40{{{ 
     41#!/bin/bash 
     42pg_dumpall -U scs -c -d > "/home/scs/backup/postgres/`date +%Y-%m-%d`.psql" 
     43gzip "/home/scs/backup/postgres/`date +%Y-%m-%d`.psql" 
     44}}} 
     45 * Create script that backs up the build server in sophie:/home/build/backup/backup.sh (the function below creates recursive copy of the .hudson directory excluding the workspace directory): 
     46{{{ 
     47#!/bin/bash 
     48dirname="/home/build/backup/`date +%Y-%m-%d`" 
     49isofile="`date +%Y-%m-%d`.iso" 
     50mkdir $dirname 
     51mkdir $dirname/.hudson/ 
     52 
     53copy() { 
     54   for file in `ls "$1$2"` 
     55   do 
     56      if [ $file = 'Sophie' ] 
     57      then  
     58         file="Sophie 2.0" 
     59      fi 
     60      if [ `echo "$1$2$file" | grep /sophie2/ | wc -l` -eq 0 ] 
     61      then 
     62         if [ -d "$1$2$file" ] 
     63         then 
     64            mkdir "$dirname$2$file" 
     65            copy "$1" "$2$file/" 
     66         else 
     67            cp "$1$2$file" "$dirname$2$file" 
     68         fi 
     69      else  
     70      mkdir "$1$2$file"  
     71      fi 
     72   done 
     73} 
     74 
     75 
     76copy /home/build   /.hudson/ 
     77 
     78tar -cvvf $dirname.tar $dirname 
     79gzip $dirname.tar 
     80rm -Rf $dirname 
     81}}} 
     82 * Execute the scripts to create two back up DVD's. 
     83 * They should be stored separately. 
    3184 
    3285= Implementation =