bacula 安装

本文涉及的产品
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
云数据库 RDS MySQL,高可用系列 2核4GB
简介:

      bacula是一个很不错的备份软件,自rhel6 加入了官方仓库中,据说facebook就用它来备份数据。

       bacula分为三大部分,服务端dir、存储端sd、客户端。

       服务端是bacula的中枢神经,负责验证客户端,定制备份计划和执行备份任务;

      存储端仅仅提供存储介质,可以是硬盘,磁带,光盘等;

      客户端功能也很简单,主要提供文件备份时的上传和还原时的下载;

     由三大部分衍生出来的功能还有bconsole、bat,分别提供了服务端的命令行接口和图形接口。webmin还提供了一个强大的基于web的配置界面。

 

      提供一个自己写的脚本,快速搭建bacula服务器。

 

 
 
  1. #!/usr/bin/env bash 
  2. name=bacula_setup.sh 
  3. # author:purple_grape 
  4. # version: 0.6 
  5. # this script will create a ready-to-run bacula server 
  6. # test under scientific linux 6.1 only , use it at your own risk 
  7. #-------------------------------------------------------# 
  8. #set -x 
  9. set -e 
  10.  
  11. if [ "$(id -u)" != "0" ]; then 
  12.    echo "This script must be run as root" 1>&2 
  13.    exit 1 
  14. fi 
  15.  
  16. # install packages 
  17. yum -y install bacula-director-mysql  bacula-storage-mysql bacula-console  bacula-client  mysql-server # bacula-console-bat bacula-docs 
  18. #the last 2 packages are optional,you may need them under a GUI 
  19.  
  20. rpm -ivh http://download.fedora.redhat.com/pub/epel/6/x86_64/epel-release-6-5.noarch.rpm 
  21. yum install pwgen --enablerepo=epel -y 
  22.  
  23. ip=`ifconfig eth0 |grep "inet addr" |awk '{print $2}'|cut -c 6-` 
  24. addr=192.168.1.251 
  25.  
  26. #pwgen is a passwd generator!! 
  27. dirpw=`pwgen -B 20 1` 
  28. mondirpw=`pwgen -B 20 1` 
  29. sdpw=`pwgen -B 20 1` 
  30. monsdpw=`pwgen -B 20 1` 
  31. fdpw=`pwgen -B 20 1` 
  32. monfdpw=`pwgen -B 20 1` 
  33.  
  34. sed -i.bak ' s/\@\@DIR_PASSWORD\@\@/'$dirpw'/g; s/\@\@SD_PASSWORD\@\@/'$sdpw'/g; s/\@\@FD_PASSWORD\@\@/'$fdpw'/g; s/\@\@MON_DIR_PASSWORD\@\@/'$mondirpw'/g; s/client\.example\.com/'$addr'/g;s/storage\.example\.com/'$addr'/g' /etc/bacula/bacula-dir.conf 
  35.  
  36. sed -i.bak ' s/\@\@SD_PASSWORD\@\@/'$sdpw'/g ;s/\@\@MON_SD_PASSWORD\@\@/'$monsdpw'/g' /etc/bacula/bacula-sd.conf 
  37. sed -i.bak ' s/\@\@FD_PASSWORD\@\@/'$fdpw'/g ;s/\@\@MON_FD_PASSWORD\@\@/'$dirpw'/g' /etc/bacula/bacula-fd.conf 
  38. sed -i.bak ' s/\@\@DIR_PASSWORD\@\@/'$dirpw'/g;s/localhost/'$addr'/g' /etc/bacula/bconsole.conf 
  39. sed -i.bak ' s/\@\@DIR_PASSWORD\@\@/'$dirpw'/g;s/server\.example\.com/'$addr'/g' /etc/bacula/bat.conf 
  40.  
  41.  
  42. sed -i '/50G/i\  Label Format = "test-"' /etc/bacula/bacula-dir.conf 
  43. sed -i '/test-/i\  Maximum Volume Jobs =1' /etc/bacula/bacula-dir.conf 
  44.  
  45. # mail out when get error only 
  46. sed -i '/root\@localhost/{s/mail/MailOnError/}' /etc/bacula/bacula-dir.conf 
  47.  
  48.  
  49. echo DIR_PASSWORD $dirpw         >/etc/bacula/password 
  50. echo MON_DIR_PASSWROD $mondirpw     >>/etc/bacula/password 
  51. echo SD_PASSWROD $sdpw          >>/etc/bacula/password 
  52. echo MON_SD_PASSWROD $monsdpw       >>/etc/bacula/password 
  53. echo FD_PASSWORD $fdpw          >>/etc/bacula/password 
  54. echo MON_FD_PASSWROD $monfdpw       >>/etc/bacula/password 
  55.  
  56. chmod 600 /etc/bacula/password 
  57.  
  58. # initial mysql 
  59. /etc/init.d/mysqld restart 
  60. chkconfig --level 2345 mysqld on 
  61.  
  62. # empty passwd is default in newly-installed mysql server, 
  63. # if you have set your own passwd 
  64. # please add "-p" at the end of the following command 
  65.  
  66. /usr/libexec/bacula/grant_mysql_privileges 
  67. /usr/libexec/bacula/create_mysql_database 
  68. /usr/libexec/bacula/make_mysql_tables 
  69.  
  70. # restart services and set them on-boot 
  71. /etc/init.d/bacula-dir restart 
  72. /etc/init.d/bacula-fd restart 
  73. /etc/init.d/bacula-sd restart 
  74. chkconfig --level 2345 bacula-dir on 
  75. chkconfig --level 2345 bacula-fd on 
  76. chkconfig --level 2345 bacula-sd on 
  77.  
  78. # the end 









本文转自 紫色葡萄 51CTO博客,原文链接:http://blog.51cto.com/purplegrape/933802,如需转载请自行联系原作者

相关实践学习
如何在云端创建MySQL数据库
开始实验后,系统会自动创建一台自建MySQL的 源数据库 ECS 实例和一台 目标数据库 RDS。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助     相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
目录
相关文章
Error: 0x800701bc WSL 2 ?????????????????? https://aka.ms/wsl2kernel
Error: 0x800701bc WSL 2 ?????????????????? https://aka.ms/wsl2kernel
143 0
|
4月前
|
存储 Ubuntu 关系型数据库
在Ubuntu 14.04上安装Bacula服务器的方法
在Ubuntu 14.04上安装Bacula服务器的方法
39 0
|
5月前
|
算法
CF 1561
【7月更文挑战第20天】
48 2
|
6月前
|
C++ Windows
VS2017出现的神奇错误HRSULT:0x80041FE2
VS2017出现的神奇错误HRSULT:0x80041FE2
105 1
|
缓存
Centos8使用yum报错 Couldn‘t resolve host name for http://mirrorlist.centos.org/?releas
Centos8使用yum报错 Couldn‘t resolve host name for http://mirrorlist.centos.org/?releas
1727 0
|
容器
ContentControl as CC和ContentPresenter as CP的使用
原文:ContentControl as CC和ContentPresenter as CP的使用   1.CC为文本控件的父类,它继承为control,所以他是控件,       2.CP继承FrameworkElement,所以他是容器,相当于占位符       3.想让控件中能包含子控件就需要用CP,反之用CC就行。
788 0
|
存储 关系型数据库 MySQL