给大家带来CentOS主动逐日备份网站文件和数据库,并上传FTP空间
如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的小伙伴们!1、装置Email发送步伐1yuminstallsendmailmutt
2、装置FTP客户端步伐
本剧本必要用到FTP客户端步伐将文件上传到FTP空间下面,因而必需装置FTP客户端,不然将呈现ftp下令没法找到的毛病。
装置步调请参考:《CentOS提醒ftp:commandnotfound》
3、在/root目次下新建剧本文件:AutoBackupToFtp.sh,内容以下:
<divclass="syntaxhighlighternotranslate"id="highlighter_246873"style="width:613.796875px;font-size:13px;color:rgb(51,51,51);border:0px!important;margin:1em0px!important;padding:1px!important;outline:0px!important;background-image:none!important;float:none!important;vertical-align:baseline!important;position:relative!important;left:auto!important;top:auto!important;right:auto!important;bottom:auto!important;height:auto!important;line-height:1.1em!important;font-family:Consolas,BitstreamVeraSansMono,CourierNew,Courier,monospace!important;min-height:inherit!important;"><divclass="lines"style="border:0px!important;margin:0px!important;padding:0px!important;outline:0px!important;background-image:none!important;float:none!important;vertical-align:baseline!important;position:static!important;left:auto!important;top:auto!important;right:auto!important;bottom:auto!important;height:auto!important;width:auto!important;line-height:1.1em!important;font-size:1em!important;min-height:inherit!important;">1#!/bin/bash
2#你要修正的中央从这里入手下手
3MYSQL_USER=root#mysql用户名
4MYSQL_PASS=123456#mysql暗码
5MAIL_TO=***xx@gmail.com#数据库发送到的邮箱
6FTP_USER=ftpuser#ftp用户名
7FTP_PASS=ftpuserpassword#ftp暗码
8FTP_IP=***.***.***.***#ftp地点
9FTP_backup=backup#ftp上寄存备份文件的目次,这个要本人得ftp下面建的
10WEB_DATA=/home/wwwroot#要备份的网站数据,假如是利用lnmp装置包,则默许这个为网站目次
11#你要修正的中央从这里停止
12
13#界说数据库的名字和旧数据库的名字
14DataBakName=Data_$(date+"%Y%m%d").tar.gz
15WebBakName=Web_$(date+%Y%m%d).tar.gz
16OldData=Data_$(date-d-5day+"%Y%m%d").tar.gz
17OldWeb=Web_$(date-d-5day+"%Y%m%d").tar.gz
18#删除当地3天前的数据
<divclass="linealt1"style="border:0px!important;margin:0px!important;padding:0px!important;outline:0px!important;background-image:none!important;float:none!important;vertical-align:baseline!important;position:static!important;left:auto!important;top:auto!important;right:auto!important;bottom:auto!important;height:auto!important;width:auto!important;line-height:1.1em!important;font-size:1em!important;min-height:inherit!important;">19rm-rf/home/backup/Data_$(date-d-3day+"%Y%m%d").tar.gz/home/backup/Web_$(date-d-3day+"%Y%m%d"
给大家带来CentOS主动逐日备份网站文件和数据库,并上传FTP空间
哎呀,你太牛了,我好崇拜你! 下面看看一个让人无法回答的问题:“救命各位高手,向你们请教一些问题:如何在Linux下配制HTTP、FTP、Samba、DNS、DHCP、Sendmail服务器,谢谢”这样的问题。 当然你不需搭建所有服务,可以慢慢来。自己多动手,不要非等着别人帮你解决问题。 选择交流平台,如QQ群,网站论坛等。 学习Linux半年了~个人认为不会的多在网上找资料网上有很多资料可以搜索到,LS那位说放手去搞。 任何一个叫做操作系统的东西都是这样子构成的:内核+用户界面+一般应用程序。 查阅经典工具书和Howto,特别是Howto是全球数以万计的Linux、Unix的经验总结非常有参考价值通常40%的问题同样可以解决。 选择一些适于初学者的Linux社区。 期间我阅读了不少关于Linux的相关资料,其中也不乏一些有趣的小故事,这既丰富了我的课余生活,也让我加深了对一些术语的理解,比玩游戏强多了。?
页:
[1]