共计 928 个字符,预计需要花费 3 分钟才能阅读完成。
本篇内容介绍了“Mysql 怎么执行完全备份”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让丸趣 TV 小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
1. 查看上都有哪些库
mysql show databases G
*************************** 1. row ***************************
Database: information_schema
*************************** 2. row ***************************
Database: mysql
*************************** 3. row ***************************
Database: test
3 rows in set (0.00 sec)
2. 执行完全备份
sh back.sh
back.sh
#!/bin/sh
export back_dir=/data/bak
export pass= 123
export mysql_dir=/usr/local/mysql-5.1.56
for i in $(mysql -uroot -p$pass -e show databases G | grep Database | cut -d: -f2)
do
$mysql_dir/bin/mysqldump –opt $i -p$pass –skip-lock-tables $back_dir/$i.$(date +%Y%m%d).sql
done
#use fetion to notice dba
LD_LIBRARY_PATH=/usr/lib /usr/local/fetion/fetion –mobile=159xxxx3240 –pwd=123456 –to=159xxxx3240 –msg-utf8=mysql backup is success !
3. 计划任务
crontab -e
0 3 * * * sh /usr/bin/back.sh
“Mysql 怎么执行完全备份”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注丸趣 TV 网站,丸趣 TV 小编将为大家输出更多高质量的实用文章!