共计 4213 个字符,预计需要花费 11 分钟才能阅读完成。
Bacula 是一个开源网络备份解决方案,允许你在本地或者远程计算机组上备份或者还原数据。配置与安装很容易,并支持许多高级存储管理特性。
本教程中,让我们来学习一下如何在 Ubuntu 14.04 服务器上安装和配置 Bacula。我的机器的 IP 是 192.168.1.250/24,主机名是 server.linuxidc.local。现在让我们进入教程吧。
Ubuntu 13.04 安装 LAMP\Vsftpd\Webmin\phpMyAdmin 服务及设置 http://www.linuxidc.com/Linux/2013-06/86250.htm
CentOS 安装 Webmin http://www.linuxidc.com/Linux/2013-02/79052.htm
【PPT 文档】Linux 系统的远程管理软件 Webmin http://www.linuxidc.com/Linux/2012-08/68730.htm
Ubuntu 12.04 Server 安装 Webmin http://www.linuxidc.com/Linux/2012-05/60977.htm
CentOS 下搭建 LAMP 运行环境 & Webmin http://www.linuxidc.com/Linux/2012-05/60731.htm
安装 Bacula
Bacula 使用 SQL 数据库管理它的信息。我们可以使用 MySQL 或者 PostgreSQL 数据库。本篇教程中,我使用 MySQL。
输入下面的命令安装 MySQL 服务器。
- sudo apt–get update
- sudo apt–get upgrade
- sudo apt–get install mysql–server
在安装 MySQL 的过程中,可能提示需要输入数据库管理员密码。输入密码后按下 OK。
重新输入密码:
现在使用下面的命令安装 bacula:
- sudo apt–get install bacula–server bacula–client
Bacula 默认使用 Postfix MTA。安装过程中,你会被要求配置 Postfix。
选择 Internet 站点并点击 OK。
输入服务器完整域名(FQDN):
现在输入 yes 用 dbconfig-common 来配置 Bacula 数据库。
输入 MySQL 数据库管理员密码:
设置数据库的 bacula-director-mysql 用户的密码。如果留空不输入,会生成一个随机密码。
重新输入密码:
创建备份与还原目录
现在,让我们创建备份与还原目录。
- sudo mkdir –p /mybackup/backup /mybackup/restore
设置上面目录的权限与所属用户 / 组:
- sudo chown –R bacula:bacula /mybackup/
- sudo chown –R 700/mybackup/
更多详情见请继续阅读下一页的精彩内容 :http://www.linuxidc.com/Linux/2014-06/103439p2.htm
配置 Bacula
Bacula 有很多配置文件需要我们配置。
更新 Bacula Director 配置:
- sudo vi /etc/bacula/bacula–dir.conf
找到下面的字段,并更新还原路径。本篇中,** /mybackup/restore** 是我的还原位置。
- […]
- Job{
- Name=“RestoreFiles”
- Type=Restore
- Client=server–fd
- FileSet=“Full Set”
- Storage=File
- Pool=Default
- Messages=Standard
- Where=/mybackup/restore
- }
- […]
滚动到“list of files to be backed up”字段,并设置备份的目录。本篇教程中,我希望备份“/home/sk”目录。所以我把这个目录包含进了“File”参数中。
- […]
- # By default this is defined to point to the Bacula binary
- # directory to give a reasonable FileSet to backup to
- # disk storage during initial testing.
- #
- File=/home/sk
- }
- […]
继续向下滚动,找到 Exclude 字段,设置排除在备份目录外的目录列表。这里,我排除了目录 /mybackup。
- […]
- # If you backup the root directory, the following two excluded
- # files can be useful
- #
- Exclude{
- File=/var/lib/bacula
- File=/nonexistant/path/to/file/archive/dir
- File=/proc
- File=/tmp
- File=/.journal
- File=/.fsck
- File=/mybackup
- }
- }
- […]
保存并关闭文件。
更新 Bacula 存储守护进程设置:
编辑 /etc/bacula/bacula-sd.conf,
- sudo vi /etc/bacula/bacula–sd.conf
设置备份目录位置,也就是本篇中的 /mybackup/backup。
- […]
- Device{
- Name=FileStorage
- MediaType=File
- ArchiveDevice=/mybackup/backup
- LabelMedia= yes;# lets Bacula label unlabeled media
- RandomAccess=Yes;
- AutomaticMount= yes;# when device opened, read it
- RemovableMedia=no;
- AlwaysOpen=no;
- }
- […]
现在如下检查是否所有的配置是有效的。如果下面的命令没有显示,那么配置就是有效的。
- sudo bacula–dir –tc /etc/bacula/bacula–dir.conf
- sudo bacula–sd –tc /etc/bacula/bacula–sd.conf
一旦你完成所有的设置,重启所有的 bacula 服务。
- sudo /etc/init.d/bacula–director restart
- sudo /etc/init.d/bacula–fd restart
- sudo /etc/init.d/bacula–sd restart
就是这样。现在,bacula 已经成功安装与配置了。
使用 Webmin 管理 Bacula
使用命令行管理 Bacula 是有点困难的。所以我们使用一个图形化的管理工具“webmin”来简化我们的任务。
使用下面的命令在 Ubuntu 14.04 上安装 Webmin。
- 在 Ubuntu 14.04 LTS 上安装 Webmin http://www.linuxidc.com/Linux/2014-05/102471.htm
现在使用 URL https://ip-address:10000 进入 Webmin 界面。在左边的窗格中进入系统标签并点击模块配置链接。如果在系统下没有找到它,在未使用模块一栏中查找。
在数据库一栏中选择 MySQL 数据库。输入 MySQL 管理员密码,并点击保存。
就是这样。现在你可以在 webmin 中简单地配置 Bacula 了。开始加入备份客户端,磁盘卷和计划任务吧。
干杯!
更多 Ubuntu 相关信息见 Ubuntu 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=2
Bacula 是一个开源网络备份解决方案,允许你在本地或者远程计算机组上备份或者还原数据。配置与安装很容易,并支持许多高级存储管理特性。
本教程中,让我们来学习一下如何在 Ubuntu 14.04 服务器上安装和配置 Bacula。我的机器的 IP 是 192.168.1.250/24,主机名是 server.linuxidc.local。现在让我们进入教程吧。
Ubuntu 13.04 安装 LAMP\Vsftpd\Webmin\phpMyAdmin 服务及设置 http://www.linuxidc.com/Linux/2013-06/86250.htm
CentOS 安装 Webmin http://www.linuxidc.com/Linux/2013-02/79052.htm
【PPT 文档】Linux 系统的远程管理软件 Webmin http://www.linuxidc.com/Linux/2012-08/68730.htm
Ubuntu 12.04 Server 安装 Webmin http://www.linuxidc.com/Linux/2012-05/60977.htm
CentOS 下搭建 LAMP 运行环境 & Webmin http://www.linuxidc.com/Linux/2012-05/60731.htm
安装 Bacula
Bacula 使用 SQL 数据库管理它的信息。我们可以使用 MySQL 或者 PostgreSQL 数据库。本篇教程中,我使用 MySQL。
输入下面的命令安装 MySQL 服务器。
- sudo apt–get update
- sudo apt–get upgrade
- sudo apt–get install mysql–server
在安装 MySQL 的过程中,可能提示需要输入数据库管理员密码。输入密码后按下 OK。
重新输入密码:
现在使用下面的命令安装 bacula:
- sudo apt–get install bacula–server bacula–client
Bacula 默认使用 Postfix MTA。安装过程中,你会被要求配置 Postfix。
选择 Internet 站点并点击 OK。
输入服务器完整域名(FQDN):
现在输入 yes 用 dbconfig-common 来配置 Bacula 数据库。
输入 MySQL 数据库管理员密码:
设置数据库的 bacula-director-mysql 用户的密码。如果留空不输入,会生成一个随机密码。
重新输入密码:
创建备份与还原目录
现在,让我们创建备份与还原目录。
- sudo mkdir –p /mybackup/backup /mybackup/restore
设置上面目录的权限与所属用户 / 组:
- sudo chown –R bacula:bacula /mybackup/
- sudo chown –R 700/mybackup/
更多详情见请继续阅读下一页的精彩内容 :http://www.linuxidc.com/Linux/2014-06/103439p2.htm