Changeset 9063 for trunk/MagicSoft


Ignore:
Timestamp:
07/31/08 17:44:49 (16 years ago)
Author:
Daniela Dorner
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r9062 r9063  
    2828     - removed not needed variables
    2929     - changed dataset from string to int in call of macro
     30
     31   * datacenter/scripts/budb
     32     - added output how to create database MyMagic
     33     - added removing of logfiles
     34     - some small inprovements
    3035
    3136
  • trunk/MagicSoft/Mars/datacenter/scripts/budb

    r8380 r9063  
    11#!/bin/bash
     2#
     3# ========================================================================
     4#
     5# *
     6# * This file is part of MARS, the MAGIC Analysis and Reconstruction
     7# * Software. It is distributed to you in the hope that it can be a useful
     8# * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
     9# * It is distributed WITHOUT ANY WARRANTY.
     10# *
     11# * Permission to use, copy, modify and distribute this software and its
     12# * documentation for any purpose is hereby granted without fee,
     13# * provided that the above copyright notice appear in all copies and
     14# * that both that copyright notice and this permission notice appear
     15# * in supporting documentation. It is provided "as is" without express
     16# * or implied warranty.
     17# *
     18#
     19#
     20#   Author(s): Daniela Dorner  10/2006 <mailto:dorner@astro.uni-wuerzburg.de>
     21#
     22#   Copyright: MAGIC Software Development, 2000-2008
     23#
     24#
     25# ========================================================================
     26#
     27# This script backups the Magic Database.
     28# In addition it writes out the commands how to create the database.
     29#
    230
    3 datum=`date +%F`
    4 dbyd=`date +%F --date="-48hour"`
    5 
     31today=`date +%F`
     32olday=`date +%F --date="-30day"`
    633
    734set -C
    835
     36path=/home/`whoami`/budb
     37logpath=$path/log
     38mkdir -pv $logpath
     39logfile=$logpath/budb$today.log
     40oldlog=$logpath/budb$olday.log
     41file=$path/alldatabases
     42end=.sql.bz2
     43zipfile=$file$today$end
     44oldzip=$file$olday$end
    945
    10 path=/home/operator/budb
    11 logfile=$path/log/budb$datum.log
     46dbname=MyMagic
     47command=$path/Create$dbname$today.txt
     48oldcommand=$path/Create$dbname$olday.txt
    1249
    1350date > $logfile
    1451
    15 #echo $logfile
     52echo "today: $today" >> $logfile 2>&1
     53echo "date to remove: $olday" >> $logfile 2>&1
    1654
    17 echo "today: $datum" >> $logfile 2>&1
    18 echo "dbyesterday: $dbyd" >> $logfile 2>&1
     55echo "removing old files..." >> $logfile 2>&1
     56rm -v $oldzip >> $logfile 2>&1
     57rm -v $oldlog >> $logfile 2>&1
     58rm -v $oldcommand >> $logfile 2>&1
    1959
    20 file=$path/alldatabases
    21 end=.sql.bz2
    22 
    23 dbydfile=$file$dbyd$end
    24 echo "removing old file..." >> $logfile 2>&1
    25 
    26 rm -v $dbydfile >> $logfile 2>&1
    27 
    28 echo "writing all databases to file..." >> $logfile 2>&1
     60echo "writing all databases to $zipfile..." >> $logfile 2>&1
    2961set +C
    30 mysqldump --host=vela --all-databases -u dump | bzip2 -9 -c > $file$datum$end 2>> $logfile
     62# complete databases
     63mysqldump --host=vela --all-databases -u dump | bzip2 -9 -c > $zipfile 2>> $logfile
     64echo "writing create commands to $command..." >> $logfile 2>&1
     65# commands to create MyMagic
     66mysqldump --host=vela --database $dbname -u dump --no-data > $command 2>> $logfile
    3167
    3268
Note: See TracChangeset for help on using the changeset viewer.