#!/bin/bash

today=`date +%Y%m%d`
dbbak_path=/opt/dbbak
script_path=/opt/script
dbfiles_path=/opt/dbbak/dbfiles
data_path=/opt/svr/mysql/data

#备份数据文件
if [ -d $dbfiles_path/$today ];then 
  echo 'warnning:目录已经存在'
else   
  /bin/mkdir $dbfiles_path/$today
fi

/bin/cp -r $data_path/027game $dbfiles_path/$today/027game
/bin/cp -r $data_path/027game_bbs $dbfiles_path/$today/027game_bbs
/bin/cp -r $data_path/ad_flow $dbfiles_path/$today/ad_flow

if [ $? -ne 0 ];then 
   echo "备份数据文件错误-------------`date`" >> $script_path/ad.log
   exit 1
fi

#统计数据
/opt/svr/mysql/bin/mysql -uroot -p12341234!@ 027game < $script_path/caculate.sql

if [ $? -ne 0 ];then 
  echo "统计程序出错---------`date`" >> $script_path/ad.log
  exit 1
fi


#清理之前先备份数据
backup_sql_filename="$today.sql"
/opt/svr/mysql/bin/mysqldump -uroot -p12341234!@ ad_flow > $dbbak_path/ad_flow/$backup_sql_filename

if [ $? -ne 0 ];then
  echo "备份程序出错-----`date`" >> $script_path/ad.log
  exit 1
fi

#清理广告点击,注册,ip
/opt/svr/mysql/bin/mysql -uroot -p12341234!@ ad_flow < $script_path/clear_ad.sql

if [ $? -ne 0 ];then 
echo "清理广告数据出现错误---`date`" >> $script_path/ad.log
exit 1
fi

exit 0

相关文章:

  • 2021-12-10
  • 2021-09-30
  • 2021-08-08
  • 2022-12-23
  • 2022-12-23
  • 2022-02-01
  • 2022-12-23
  • 2021-12-10
猜你喜欢
  • 2022-02-27
  • 2021-12-10
  • 2021-05-25
  • 2022-12-23
  • 2021-11-27
  • 2022-12-23
相关资源
相似解决方案