Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- react
- Java
- Hook
- NapuCon2016
- Spring
- NVM
- DockerCompose
- 오삼철판볶음
- State
- MariaDB
- SpringCamp
- 고릴라볼링장
- react component
- 판교
- SpringCamp2017
- 진1926
- 오뚜기숯불소금구이
- docker
- 양살치살
- nginx
- Replacation
- useEffect
- 바스트로37
- 신미낙지
- BDD
- 전나라동동공주
- SpockFramework
- SpringCamp2019
- SetMail
- 강다니엘
Archives
- Today
- Total
Note
MariaDB Automatically Daily Dump(매일 백업하기) 본문
우선 아래와 같은 쉘 스크립트를 만든다.
아래의 스크립트는 DBMS
에 있는 모든 DB에서 특정 DB를 제외한 DB를 덤프하는 스크립트다.
#!/bin/bash
# Database credentials
user="user_name"
password="password"
host="localhost"
# Other options
backup_path="/your/path/to/backup"
date=$(date +"%Y-%m-%d")
# To create a new directory into backup directory location
mkdir -p $backup_path/$date
# get a list of databases
db_names=`mysql -u$user -p$password -e "SHOW DATABASES;" | grep -Ev "(information_schema|test|performance_schema|mysql)"`
# Dupm database into SQL file
for db_name in $db_names; do
mysqldump --add-locks --add-drop-table --force --user=$user --password=$password --host=$host $db_name | gzip > $backup_path/$date/$db_name.sql.gz
done
# Delete files older than 10 days
find $backup_path/* -mtime +10 -exec rm {} \;
스크립트를 다 만들었으면 crontab
에 등록을 한다.(crontab
이 설치가 안돼있을 경우에는 설치부터, 설치 과정은 생략)
크론은 CentOS 7
기준으로 /etc/cron.d/
디렉토리에 등록하면 된다.
# 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
0 1 * * * user_name /your/path/to/script/script.sh
이렇게 하면 매일 오전 1시에 크론이 위의 스크립트를 실행하여 DB를 덤프한다.
'Dev > Etc' 카테고리의 다른 글
Docker Iptables 오류 (0) | 2019.11.24 |
---|---|
Docker Container (0) | 2019.11.24 |
Docker 기본 사용법 (0) | 2019.11.24 |
MariaDB Replication(복제) 설정 (0) | 2019.11.24 |
Nginx Proxy 설정 (0) | 2019.11.24 |
Comments