type
Post
status
Published
slug
2019/08/02/1564714960295.html
summary
tags
Linux
运维
category
Linux
icon
password
new update day
Property
Oct 22, 2023 01:31 PM
created days
Last edited time
Oct 22, 2023 01:31 PM

脚本内容

#!/bin/bash # ========================================================= # 請輸入,你想讓備份資料放置到那個獨立的目錄去 basedir=/home/backup/daily/ # 运行前需要自己新建文件夹 # 可以自己设置备份目录 # ========================================================= PATH=/bin:/usr/bin:/sbin:/usr/sbin; export PATH export LANG=C basefile1=$basedir/mysql.$(date +%Y-%m-%d).tar.bz2 basefile2=$basedir/cgi-bin.$(date +%Y-%m-%d).tar.bz2 [ ! -d "$basedir" ] && mkdir $basedir # 1. MysQL (資料庫目錄在 /var/lib/mysql) cd /var/lib tar -jpc -f $basefile1 mysql # 2. WWW 的 CGI 程式 (如果有使用 CGI 程式的話) cd /var/www tar -jpc -f $basefile2 cgi-bin

使用方法

/etc/crontab 中添加计划任务
SHELL=/bin/bash PATH=/sbin:/bin:/usr/sbin:/usr/bin MAILTO=root # For details see man 4 crontabs # Example of job definition: # .---------------- minute (0 - 59) # | .------------- hour (0 - 23) # | | .---------- day of month (1 - 31) # | | | .------- month (1 - 12) OR jan,feb,mar,apr ... # | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat # | | | | | # * * * * * user-name command to be executed 20 3 * * * root yum -y update 20 4 * * * root /root/bash/backupday.sh 30 4 * * 0 root /root/bash/backupwk.sh
 
欢迎加入喵星计算机技术研究院,原创技术文章第一时间推送。
notion image
 
使用 docker-compose 启动 solo(一键式)使用 docker-compose 编排 zabbix-server