源码下载:http://www.bacula.org

bacula适合数据业务量巨大,每天都在迅速增长,还需要以tar打包方式进行低级备份而且没有异地容灾策略。Bacula是一个完美的增量备份功能,同时还支持远程容灾备份,可以通过bacula,可以将数据备份到任意一个远程的主机上

1. 安装

  1. # yum -y install mysql-devel.x86_64 //依赖头文件,可以看configure
  1. # ./configure \
  2. --sbindir=/opt/bacula/bin \
  3. --sysconfdir=/opt/bacula/etc \
  4. --enable-smartalloc \
  5. --with-mysql \
  6. --with-working-dir=/opt/bacula/working \
  7. --with-pid-dir=/opt/bacula/working \
  8. --with-subsys-dir=/opt/bacula/working \
  9. --with-plugindir=/usr/lib64
  10. 出现错误:configure: error: Unable to find a working C++ compiler
  11. # yum install gcc-c++.x86_64 //redhat
  12. # apt-get install g++ //ubuntu

sbindir:bin文件

sysconfdir:脚本和配置文件

libdir:libraries文件

mysql:检查mysql头文件

plugindir:Bacula plugins directory

2. 配置文件

/opt/bacula/etc目录

3. 初始化Mysql数据库

在baculaServer上安装完bacula后,还需要创建bacula对应的Mysql数据库以及访问数据库的授权,好在bacula已经为用户准备好了这样的脚本,接下来只要在bacula服务器端上执行如下脚本即可

  1. # cd /bacula/etc
  2. # ./grant_mysql_privileges
  3. # ./create_mysql_database
  4. # ./make_mysql_tables

这些脚本需要mysql这个命令,默认在/usr/bin目录下

脚本中是这样写的:

  1. bindir=/var/lib/mysql/bin

接下来可以登录Mysql数据库,查看bacula的数据库和数据表是否已经建立。在执行上面三行Mysql初始代码时,默认由空密码的root用户执行,因此要请确保Mysql数据库root密码为空

4. 配置bacula备份系统

Director Daemon:负责监听所有的备份、恢复、验证、存档事务,以及定制备份和恢复文件计划等,并将整个系统运行状况记录在一个数据库文件中。其配置文件为bacula-dir.conf

Storage Daemon(SD):主要负责将数据备份到存储介质上,而在数据恢复时,负责将数据从存储介质中传送出去。其配置文件为bacula-sd.conf

File Daemon(FD):安装在需要备份数据的机器上的守护进程,在备份数据时,它负责把文件传出,在恢复数据时负责接收数据并执行恢复操作。配置文件为bacula-fd.conf

Console:管理控制台。可以通过这个控制台连接到Director Daemon进行管理备份与恢复操作

Monitor:进程监控端

1. 配置bacula的Console端

Console端的配置文件是bconsole.conf

  1. Director {
  2. Name = f10-64-build-dir #控制端名称,在下面的bacula-dir.conf和bacula-sd.conf文件中会陆续的被引用
  3. DIRport = 9101 #控制端服务端口
  4. address = 192.168.12.188 #控制端服务器IP地址
  5. Password = "ouDao0SGXx/F+Tx4YygkK4so0l/ieqGJIkQ5DMsTQh6t" #控制端密码文件
  6. }

2. 配置bacula的Director端

bacula-dir.conf是Director端的配置文件,也是bacula的核心配置文件,这个文件非常复杂,共分为10个逻辑段,分别是:

  • Director,定义全局设置
  • Catalog,定义后台数据库
  • Jobdefs,定义默认执行任务
  • Job,自定义一个备份或者恢复任务
  • Fileset,定义备份哪些数据,不备份哪些数据
  • Schedule,定义备份时间策略
  • Pool,定义供Job使用的池属性
  • Client,定义要备份的主机地址
  • Storage,定义数据的存储方式
  • Messages,定义发送日志报告和记录日志的位置
  1. Director { #定义bacula的全局配置
  2. Name = f10-64-build-dir
  3. DIRport = 9101 #定义Director的监听端口
  4. QueryFile = "/opt/bacula/etc/query.sql"
  5. WorkingDirectory = "/opt/bacula/var/bacula/working"
  6. PidDirectory = "/var/run"
  7. Maximum Concurrent jobs = 1 #定义一次能处理的最大并发数
  8. #验证密码,这个密码必须与bconsole.conf文件中对应的Director逻辑段密码相同
  9. Password = "ouDao0SGXx/F+Tx4YygkK4so0l/ieqGJIkQ5DMsTQh6t"
  10. #定义日志输出方式,"Daemon"在下面的Messages逻辑段中进行了定义
  11. Messages = Daemon
  12. }
  13. Job { #自定义一个备份任务
  14. Name = "Client1" #备份任务名称。如果有空格,字符串需要用双引号
  15. Client = dbfd #指定要备份的客户端主机,"dbfd"在后面Client逻辑段中进行定义
  16. Level = Incremental #定义备份的级别,Incremental为增量备份。Level的取值#可为Full(完全备份)、Incremental(增量备份)
  17. #和Differential(差异备份),如果第一次没做完全备份,则先进行完全备份后再执行Incremental
  18. type = Backup #定义Job的类型,"backup"为备份任务,可选的类型还有restore和verify等
  19. FileSet = dbfs #指定要备份的客户端数据,"dbfs"在后面FileSet逻辑段中进行定义
  20. Schedule = dbscd #指定这个备份任务的执行时间策略,"dbscd"在后面的Schedule逻辑段中进行了定义
  21. Storage = dbsd #指定备份数据的存储路径与介质,"dbsd" 在后面的Storage逻辑段中进行定义
  22. Messages = Standard
  23. Pool = dbpool #指定备份使用的pool属性,"dbpool"在后面的Pool逻辑段中进行定义。
  24. write Bootstrap = "/opt/bacula/var/bacula/working/Client2.bsr" #指定备份的引导信息路径
  25. }
  26. Job { #定义一个名为Client的差异备份的任务
  27. Name = "Client"
  28. Type = Backup
  29. FileSet = dbfs
  30. Schedule = dbscd
  31. Storage = dbsd
  32. Messages = Standard
  33. Pool = dbpool
  34. Client = dbfd
  35. Level = Differential #指定备份级别为差异备份
  36. Write Bootstrap = "/opt/bacula/var/bacula/working/Client1.bsr"
  37. }
  38. Job { #定义一个名为BackupCatalog的完全备份任务
  39. Name = "BackupCatalog"
  40. Type = Backup
  41. Level = Full #指定备份级别为完全备份
  42. Client = dbfd
  43. FileSet="dbfs"
  44. Schedule = "dbscd"
  45. Pool = dbpool
  46. Storage = dbsd
  47. Messages = Standard
  48. RunBeforeJob = "/opt/bacula/etc/make_catalog_backup bacula bacula"
  49. RunAfterJob = "/opt/bacula/etc/delete_catalog_backup"
  50. Write Bootstrap = "/opt/var/bacula/working/BackupCatalog.bsr"
  51. }
  52. Job { #定义一个还原任务
  53. Name = "RestoreFiles"
  54. Type = Restore #定义Job的类型为"Restore ",即恢复数据
  55. Client=dbfd
  56. FileSet=dbfs
  57. Storage = dbsd
  58. Pool = dbpool
  59. Messages = Standard
  60. Where = /tmp/bacula-restores #指定默认恢复数据到这个路径
  61. }
  62. FileSet { #定义一个名为dbfs的备份资源,也就是指定需要备份哪些数据,需要排除哪些数据等,可以指定多个FileSet
  63. Name = dbfs
  64. Include {
  65. Options {
  66. signature = MD5; Compression=gzip; } #表示使用MD5签名并压缩
  67. file = /cws3 #指定客户端FD需要备份的文件目录
  68. }
  69. Exclude { #通过Exclude排除不需要备份的文件或者目录,可根据具体情况修改
  70. File = /opt/bacula/var/bacula/working
  71. File = /tmp
  72. File = /proc
  73. File = /tmp
  74. File = /.journal
  75. File = /.fsck
  76. }
  77. }
  78. Schedule { #定义一个名为dbscd的备份任务调度策略
  79. Name = dbscd
  80. Run = Full 1st sun at 23:05 #第一周的周日晚23:05分进行完全备份
  81. Run = Differential 2nd-5th sun at 23:05 #第2~5周的周日晚23:05进行差异备份
  82. Run = Incremental mon-sat at 23:05 #所有周一至周六晚23:05分进行增量备份
  83. }
  84. FileSet {
  85. Name = "Catalog"
  86. Include {
  87. Options {
  88. signature = MD5
  89. }
  90. File = /opt/bacula/var/bacula/working/bacula.sql
  91. }
  92. }
  93. Client { #Client用来定义备份哪个客户端FD的数据
  94. Name = dbfd #Clinet的名称,可以在前面的Job中调用
  95. Address = 192.168.12.189 #要备份的客户端FD主机的IP地址
  96. FDPort = 9102 #与客户端FD通信的端口
  97. Catalog = MyCatalog #使用哪个数据库存储信息,"MyCatalog"在后面的MyCatalog逻辑段中进行定义
  98. Password = "ouDao0SGXx/F+Tx4YygkK4so0l/ieqGJIkQ5DMsTQh6t" #Director端与客户端FD的验证密码,
  99. #这个值必须与客户端FD配置文件bacula-fd.conf中密码相同
  100. File Retention = 30 days #指定保存在数据库中的记录多久循环一次,这里是30天,只影响数据库中的记录不影响备份的文件
  101. Job Retention = 6 months #指定Job的保持周期,应该大于File Retention指定的值
  102. AutoPrune = yes #当达到指定的保持周期时,是否自动删除数据库中的记录,yes表示自动清除过期的Job
  103. }
  104. Client {
  105. Name = dbfd1
  106. Address = 192.168.12.188
  107. FDPort = 9102
  108. Catalog = MyCatalog
  109. Password = "Wr8lj3q51PgZ21U2FSaTXICYhLmQkT1XhHbm8a6/j8Bz"
  110. File Retention = 30 days
  111. Job Retention = 6 months
  112. AutoPrune = yes
  113. }
  114. Storage { # Storage用来定义将客户端的数据备份到哪个存储设备上
  115. Name = dbsd
  116. Address = 192.168.12.188 #指定存储端SD的IP地址,不要用localhost,不然异机会连接不上
  117. SDPort = 9103 #指定存储端SD通信的端口
  118. Password = "ouDao0SGXx/F+Tx4YygkK4so0l/ieqGJIkQ5DMsTQh6t" #Director端与存储端SD的验证密码,
  119. #这个值必须与存储端SD配置文件bacula-sd.conf中Director逻辑段密码相同
  120. Device = dbdev #指定数据备份的存储介质,必须与存储端(这里是192.168.12.188)的bacula-sd.conf配置文件中的
  121. #"Device" 逻辑段的"Name"项名称相同
  122. Media Type = File #指定存储介质的类别,必须与存储端SD(这里是192.168.12.188)的bacula-sd.conf配置文件中的
  123. #"Device" 逻辑段的"Media Type"项名称相同
  124. }
  125. Catalog { # Catalog逻辑段用来定义关于日志和数据库设定
  126. Name = MyCatalog
  127. dbname = "bacula"; dbuser = "bacula"; dbpassword = "" #指定库名、用户名和密码
  128. }
  129. Messages { # Messages逻辑段用来设定Director端如何保存日志,以及日志的保存格式,可以将日志信息发送到管理员邮箱,
  130. # 前提是必须开启sendmail服务
  131. Name = Standard
  132. mailcommand = "/usr/sbin/bsmtp -h localhost -f \"\(Bacula\) \<%r\>\" -s \"Bacula: %t %e of %c %l\" %r"
  133. operatorcommand = "/usr/sbin/bsmtp -h localhost -f \"\(Bacula\) \<%r\>\" -s \"Bacula: Intervention needed for %j\" %r"
  134. mail = dba.gao@gmail.com = all, !skipped
  135. operator = exitgogo@126.com = mount
  136. console = all, !skipped, !saved
  137. append = "/opt/bacula/log/bacula.log" = all, !skipped #定义bacula的运行日志
  138. append ="/opt/bacula/log/bacula.err.log" = error,warning, fatal #定义bacula的错误日志
  139. catalog = all
  140. }
  141. Messages { #定义了一个名为Daemon的Messages逻辑段,"Daemon"已经在前面进行了引用
  142. Name = Daemon
  143. mailcommand = "/usr/sbin/bsmtp -h localhost -f \"\(Bacula\) \<%r\>\" -s \"Bacula daemon message\" %r"
  144. mail = exitgogo@126.com = all, !skipped
  145. console = all, !skipped, !saved
  146. append = "/opt/bacula/log/bacula_demo.log" = all, !skipped
  147. }
  148. Pool { #定义供Job任务使用的池属性信息,例如,设定备份文件过期时间、是否覆盖过期的备份数据、是否自动清除过期备份等
  149. Name = dbpool
  150. Pool Type = Backup
  151. Recycle = yes #重复使用
  152. AutoPrune = yes #表示自动清除过期备份文件
  153. Volume Retention = 7 days #指定备份文件保留的时间
  154. Label Format ="db-${Year}-${Month:p/2/0/r}-${Day:p/2/0/r}-id${JobId}" #设定备份文件的命名格式,
  155. #这个设定格式会产生的命名文件为:db-2010-04-18-id139
  156. Maximum Volumes = 7 #设置最多保存多少个备份文件
  157. Recycle Current Volume = yes #表示可以使用最近过期的备份文件来存储新备份
  158. Maximum Volume Jobs = 1 #表示每次执行备份任务创建一个备份文件
  159. }
  160. Console { #限定Console利用tray-monitor获得Director的状态信息
  161. Name = f10-64-build-mon
  162. Password = "RSQy3sRjak3ktZ8Hr07gc728VkZHBr0QCjOC5x3pXEap"
  163. CommandACL = status, .status
  164. }

3. 配置bacula的SD(备份目的)

SD的配置文件是bacula-sd.conf

  1. Storage { #定义存储,本例中是f10-64-build-sd
  2. Name = f10-64-build-sd #定义存储名称
  3. SDPort = 9103 #监听端口
  4. WorkingDirectory = "/opt/bacula/var/bacula/working"
  5. Pid Directory = "/var/run"
  6. Maximum Concurrent Jobs = 20
  7. }
  8. Director { #定义一个控制StorageDaemon的Director
  9. Name = f10-64-build-dir #这里的"Name"值必须和Director端配置文件bacula-dir.conf中Director逻辑段名称相同
  10. Password = "ouDao0SGXx/F+Tx4YygkK4so0l/ieqGJIkQ5DMsTQh6t" #这里的"Password"值必须和Director端配置文件
  11. #bacula-dir.conf中Storage逻辑段密码相同
  12. }
  13. Director { #定义一个监控端的Director
  14. Name = f10-64-build-mon #这里的"Name"值必须和Director端配置文件bacula-dir.conf中Console逻辑段名称相同
  15. Password = "RSQy3sRjak3ktZ8Hr07gc728VkZHBr0QCjOC5x3pXEap" #这里的"Password"值必须和Director端配置文件
  16. #bacula-dir.conf中Console逻辑段密码相同
  17. Monitor = yes
  18. }
  19. Device { #定义Device
  20. Name = dbdev #定义Device的名称,这个名称在Director端配置文件bacula-dir.conf中的Storage逻辑段Device项中被引用
  21. Media Type = File #只要和Storage -> Media type名字一致即可
  22. Archive Device = /webdata #Archive Device用来指定备份存储的介质,可以是cd、dvd、tap等,
  23. #这里是将备份的文件保存的/webdata目录下
  24. LabelMedia = yes; #通过Label命令来建立卷文件
  25. Random Access = yes; #设置是否采用随机访问存储介质,这里选择yes
  26. AutomaticMount = yes; #表示当存储设备打开时,是否自动使用它,这选择yes
  27. RemovableMedia = no; #是否支持可移动的设备,如tap或cd,这里选择no
  28. AlwaysOpen = no; #是否确保tap设备总是可用,这里没有使用tap设备,因此设置为no
  29. }
  30. Messages { #为存储端SD定义一个日志或消息处理机制
  31. Name = Standard
  32. director = f10-64-build-dir = all
  33. }

4. 配置bacula的FD端(备份源)

客户端FD运行在一台独立的服务器上,它的配置文件是bacula-fd.conf

  1. Director { #定义一个允许连接FD的控制端
  2. Name = f10-64-build-dir #这里的"Name"值必须和Director端配置文件bacula-dir.conf中Director逻辑段名称相同
  3. Password = "ouDao0SGXx/F+Tx4YygkK4so0l/ieqGJIkQ5DMsTQh6t" #这里的"Password"值必须和Director端配置文件
  4. #bacula-dir.conf中Client逻辑段密码相同
  5. }
  6. Director { #定义一个允许连接FD的监控端
  7. Name = f10-64-build-mon
  8. Password = "RSQy3sRjak3ktZ8Hr07gc728VkZHBr0QCjOC5x3pXEap"
  9. Monitor = yes
  10. }
  11. FileDaemon { #定义一个FD端
  12. Name = localhost.localdomain-fd
  13. FDport = 9102 #监控端口
  14. WorkingDirectory = /opt/bacula/var/bacula/working
  15. Pid Directory = /var/run
  16. Maximum Concurrent Jobs = 20 #定义一次能处理的并发作业数
  17. }
  18. Messages { #定义一个用于FD端的Messages
  19. Name = Standard
  20. director = localhost.localdomain-dir = all, !skipped, !restored
  21. }

借用一个图:

5. 启动bacula的Director daemon与Storage daemon

第一种方式:

  1. # /opt/bacula/sbin/bacula {start|stop|restart|status}

第二种方式:

  1. # /bacula/etc/bacula-ctl-dir {start|stop|restart|status}
  2. # /bacula/etc/bacula-ctl-sd {start|stop|restart|status}
  3. # /bacula/etc/bacula-ctl-fd {start|stop|restart|status}

观察启动端口情况:

  1. # netstat -antl | grep 91
  2. tcp 0 0 0.0.0.0:9101 0.0.0.0:* LISTEN
  3. tcp 0 0 0.0.0.0:9102 0.0.0.0:* LISTEN
  4. tcp 0 0 0.0.0.0:9103 0.0.0.0:* LISTEN

注:启动bacula的dir服务前,必须启动MySQL数据库

6. 在客户端FD启动File daemon

  1. # /bacula/sbin/bacula {start|stop|restart|status}
  1. # /bacula/etc/bacula-ctl-fd {start|stop|restart|status}

7. 工作流程

  1. 通过console连接到Director端,备份恢复操作开始
  2. Director端从自己的数据库中调出记录信息,对存储端SD与客户端FD的任务进行协调
  3. 客户端FD负责验证Director的操作许可,如果验证通过,则允许连接到存储端SD
  4. 客户端FD根据Director发出的请求去连接SD,将FD端的数据备份到存SD指定的存储介质上,或者将SD端存储介质中的数据传回到客户端FD指定的位置上,完成备份恢复过程

8.console控制

  1. *help
  2. Command Description
  3. ======= ===========
  4. add Add media to a pool
  5. autodisplay Autodisplay console messages
  6. automount Automount after label
  7. cancel Cancel a job
  8. create Create DB Pool from resource
  9. delete Delete volume, pool or job
  10. disable Disable a job, attributes batch process
  11. enable Enable a job, attributes batch process
  12. estimate Performs FileSet estimate, listing gives full listing
  13. exit Terminate Bconsole session
  14. gui Non-interactive gui mode
  15. help Print help on specific command
  16. label Label a tape
  17. list List objects from catalog
  18. llist Full or long list like list command
  19. messages Display pending messages //可以让作业信息立即显示
  20. memory Print current memory usage
  21. mount Mount storage
  22. prune Prune expired records from catalog
  23. purge Purge records from catalog
  24. quit Terminate Bconsole session
  25. query Query catalog
  26. restore Restore files //还原
  27. relabel Relabel a tape
  28. release Release storage
  29. reload Reload conf file //修改配置文件生效
  30. run Run a job //备份
  31. status Report status
  32. stop Stop a job
  33. setdebug Sets debug level
  34. setbandwidth Sets bandwidth
  35. setip Sets new client address -- if authorized
  36. show Show resource records
  37. sqlquery Use SQL to query catalog
  38. time Print current time
  39. trace Turn on/off trace to file
  40. truncate Truncate one or more Volumes
  41. unmount Unmount storage
  42. umount Umount - for old-time Unix guys, see unmount
  43. update Update volume, pool or stats
  44. use Use catalog xxx
  45. var Does variable expansion
  46. version Print Director version
  47. wait Wait until no jobs are running
  48. When at a prompt, entering a period cancels the command.

1. 添加存储介质

  1. # ./bconsole
  2. Connecting to Director localhost:9101
  3. 1000 OK: 1 localhost-dir Version: 7.0.5 (28 July 2014)
  4. Enter a period to cancel a command.
  5. *label #run/restore
  6. Automatically selected Catalog: MyCatalog
  7. Using Catalog "MyCatalog"
  8. The defined Storage resources are:
  9. 1: File1
  10. 2: File2
  11. Select Storage resource (1-2): 1
  12. Enter new Volume name: abc #/tmp下的备份名
  13. Defined Pools:
  14. 1: Default
  15. 2: File
  16. 3: Scratch
  17. Select the Pool (1-3): 2
  18. Connecting to Storage daemon File at localhost:9103 ...
  19. Sending label command for Volume "abc" Slot 0 ...
  20. 3000 OK label. VolBytes=192 DVD=0 Volume="abc" Device="FileChgr1-Dev1" (/tmp)
  21. Catalog record for Volume "abc", Slot 0 successfully created.
  22. Requesting to mount FileChgr1 ...
  23. 3906 File device ""FileChgr1-Dev1" (/tmp)" is always mounted.
  24. *quit

2. 备份

  1. *run
  2. Automatically selected Catalog: MyCatalog
  3. Using Catalog "MyCatalog"
  4. A job name must be specified.
  5. The defined Job resources are:
  6. 1: BackupClient1
  7. 2: BackupCatalog
  8. 3: RestoreFiles
  9. Select Job resource (1-3): 1
  10. Run Backup job
  11. JobName: BackupClient1
  12. Level: Incremental
  13. Client: localhost-fd
  14. FileSet: Full Set
  15. Pool: File (From Job resource)
  16. Storage: File (From Job resource)
  17. When: 2015-05-19 20:35:49
  18. Priority: 10
  19. OK to run? (yes/mod/no): yes
  20. Job queued. JobId=1
  21. You have messages.

3. 还原

  1. *restore
  2. First you select one or more JobIds that contain files
  3. to be restored. You will be presented several methods
  4. of specifying the JobIds. Then you will be allowed to
  5. select which files from those JobIds are to be restored.
  6. To select the JobIds, you have the following choices:
  7. 1: List last 20 Jobs run
  8. 2: List Jobs where a given File is saved
  9. 3: Enter list of comma separated JobIds to select
  10. 4: Enter SQL list command
  11. 5: Select the most recent backup for a client
  12. 6: Select backup for a client before a specified time
  13. 7: Enter a list of files to restore
  14. 8: Enter a list of files to restore before a specified time
  15. 9: Find the JobIds of the most recent backup for a client
  16. 10: Find the JobIds for a backup for a client before a specified time
  17. 11: Enter a list of directories to restore for found JobIds
  18. 12: Select full restore to a specified Job date
  19. 13: Cancel
  20. Select item: (1-13): 5
  21. Automatically selected Client: localhost-fd
  22. Automatically selected FileSet: Full Set
  23. +-------+-------+----------+------------+---------------------+------------+
  24. | JobId | Level | JobFiles | JobBytes | StartTime | VolumeName |
  25. +-------+-------+----------+------------+---------------------+------------+
  26. | 1 | F | 17 | 12,840,619 | 2015-05-19 20:37:14 | Vol-0003 |
  27. +-------+-------+----------+------------+---------------------+------------+
  28. You have selected the following JobId: 1
  29. Building directory tree for JobId(s) 1 ...
  30. 16 files inserted into the tree.
  31. You are now entering file selection mode where you add (mark) and
  32. remove (unmark) files to be restored. No files are initially added, unless
  33. you used the "all" keyword on the command line.
  34. Enter "done" to leave this mode.
  35. cwd is: /
  36. $ ls
  37. opt/
  38. $ mark opt
  39. 17 files marked.
  40. $ done

中文手册:http://blog.chinaunix.net/uid/14117922/abstract/1.html

bacula备份工具的更多相关文章

  1. 类Unix上5个最佳开源备份工具 Bacula/Amanda/Backupninja/Backuppc/UrBackup

    当为一个企业选择备份工具的时候,你都考虑什么呢? 确定你正在部署的软件具有下面的特性 开源软件 – 你务必要选择那些源码可以免费获得,并且可以修改的软件.确信可以恢复你的数据,即使是软件供应商/项目停 ...

  2. Linux 备份工具

     Linux 备份工具 GNU 的传统备份工具  GNU tar — http://www.gnu.org/software/tar/ GNU cpio — http://www.gnu.org/so ...

  3. Linux和类Unix系统上5个最佳开源备份工具

    一个好的备份最基本的目的就是为了能够从一些错误中恢复: 人为的失误 磁盘阵列或是硬盘故障 文件系统崩溃 数据中心被破坏等等. 所以,我为大家罗列了一些开源的软件备份工具. 当为一个企业选择备份工具的时 ...

  4. 超全Linux备份工具集合,满足你的所有需要!

    经常备份计算机上的数据是个好的做法,它可以手动完成,也可以设置成自动执行.许多备份工具拥有不同的功能特性,让用户可以配置备份类型.备份时间.备份对象.将备份活动记入日志及执行更多操作. 1.Rsync ...

  5. Linux 和类 Unix 系统上5个最佳开源备份工具

    转载:http://linux.cn/article-4623-weixin.html#rd?sukey=cbbc36a2500a2e6cb7678c4d38b691a9fa7403b259f898e ...

  6. Ubuntu系统备份工具大全(官方整理推荐)

    其实官方在系统备份这块已经有Wiki整理和收集各类实用的工具.以下是翻译自官方Wiki的部分文档: 备份工具  wiki文档实用程序 工具 界面 格式类型 Raw/File 支持 远程 增量 差异 自 ...

  7. [转帖]服务器备份工具:Amanda,Bakula,Clonezilla,Rsnapshot,Mondo Rescue

    服务器备份工具:Amanda,Bakula,Clonezilla,Rsnapshot,Mondo Rescue https://ywnz.com/linuxyffq/5270.html 改天试用一下. ...

  8. SQLSERVER自动定时(手动)备份工具

    最近项目需要,写了一个小工具软件: 1.实时显示监控 2.可多选择备份数据库 3.按每天定时备份 4.备份文件自动压缩 5.删除之前备份文件 直接上图 1.备份监控界面: 2.数据库设置: 附工具下载 ...

  9. MySQL 5.7 mysqlpump 备份工具说明

    背景: MySQL5.7之后多了一个备份工具:mysqlpump.它是mysqldump的一个衍生,mysqldump就不多说明了,现在看看mysqlpump到底有了哪些提升,可以查看官方文档,这里针 ...

随机推荐

  1. mesos-slave启动不起来

    刚开始时候的状态 后来装了docker后

  2. 项目部署到Linux上遇到的坑

    作者:晨钟暮鼓c个人微信公众号:程序猿的月光宝盒 1.本地Navicat for MySQL无法连接至服务器(Centos 7 x86_64 bbr) 1045错误: 解决步骤: ​ 1.查看用户名密 ...

  3. ASP.NET Core 设置默认起始页(如default.html)

    测试页面foo.html 在Startup.cs内使用middleware 代码如下: DefaultFilesOptions defaultFilesOptions = new DefaultFil ...

  4. 中文版 Apple 官方 Swift 教程《The Swift Programming Language》

    简介 欢迎使用 Swift 关于 Swift 版本兼容性 Swift 初见 Swift 版本历史记录 Swift 教程 基础部分 基本运算符 字符串和字符 集合类型 控制流 函数 闭包 枚举 类和结构 ...

  5. 安装上传下载插件,jdk及redis

    安装rz sz (1)编译安装root 账号登陆后,依次执行以下命令:cd /tmpwget http://www.ohse.de/uwe/releases/lrzsz-0.12.20.tar.gzt ...

  6. June 03rd, 2019. Week 23rd, Monday

    There is no shame in hard work. 努力从来不丢人. Stop complaining about the current work arrangements, just ...

  7. oracle xmltype + blob + clob

    oracle varchar2最大存储长度为4000,所以当字段长度超限时可尝试存储为blob或xmltype格式 xmltype --1.创建xml表 Create TABLE testxml( i ...

  8. Python参数类型以及实现isOdd函数,isNum函数,multi函数,isPrime函数

    Python参数类型以及实现isOdd函数,isNum函数,multi函数,isPrime函数 一.Python参数类型 形参:定义函数时的参数变量. 实参:调用函数时使用的参数变量. 参数传递的过程 ...

  9. DirectShow 获取音视频输入设备列表

    开发环境:Win10 + VS2015 本文介绍一个 "获取音频视频输入设备列表" 的示例代码. 效果图 代码下载 代码下载(VC2015):Github - DShow_simp ...

  10. 【STM32H7教程】第15章 STM32H7的GPIO基础知识(重要)

    完整教程下载地址:http://www.armbbs.cn/forum.php?mod=viewthread&tid=86980 第15章       STM32H7的GPIO基础知识(重要) ...