Sophie

Sophie

distrib > Fedora > 16 > i386 > by-pkgid > df754e4e6f7f5fc8ab9d6ed8559f3e3d > files > 172

bacula-docs-5.0.3-19.fc16.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">

<!--Converted with LaTeX2HTML 2008 (1.71)
original version by:  Nikos Drakos, CBLU, University of Leeds
* revised and updated by:  Marcus Hennecke, Ross Moore, Herb Swan
* with significant contributions from:
  Jens Lippmann, Marek Rouchal, Martin Wilck and others -->
<HTML>
<HEAD>
<TITLE>New Features in Released Version 3.0.2</TITLE>
<META NAME="description" CONTENT="New Features in Released Version 3.0.2">
<META NAME="keywords" CONTENT="main">
<META NAME="resource-type" CONTENT="document">
<META NAME="distribution" CONTENT="global">

<META NAME="Generator" CONTENT="LaTeX2HTML v2008">
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">

<LINK REL="STYLESHEET" HREF="main.css">

<LINK REL="next" HREF="New_Features_in_3_0_0.html">
<LINK REL="previous" HREF="Released_Version_3_0_3_3_0_.html">
<LINK REL="up" HREF="Bacula_Main_Reference.html">
<LINK REL="next" HREF="New_Features_in_3_0_0.html">
</HEAD>

<BODY >
<!--Navigation Panel-->
<A NAME="tex2html1138"
  HREF="New_Features_in_3_0_0.html">
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
<A NAME="tex2html1132"
  HREF="Bacula_Main_Reference.html">
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
<A NAME="tex2html1126"
  HREF="Released_Version_3_0_3_3_0_.html">
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
<A NAME="tex2html1134"
  HREF="Contents.html">
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A> 
<A NAME="tex2html1136"
  HREF="Thanks.html">
<IMG WIDTH="43" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="index" SRC="index.png"></A> 
<BR>
<B> Next:</B> <A NAME="tex2html1139"
  HREF="New_Features_in_3_0_0.html">New Features in 3.0.0</A>
<B> Up:</B> <A NAME="tex2html1133"
  HREF="Bacula_Main_Reference.html">Bacula Main Reference</A>
<B> Previous:</B> <A NAME="tex2html1127"
  HREF="Released_Version_3_0_3_3_0_.html">Released Version 3.0.3 and</A>
 &nbsp; <B>  <A NAME="tex2html1135"
  HREF="Contents.html">Contents</A></B> 
 &nbsp; <B>  <A NAME="tex2html1137"
  HREF="Thanks.html">Index</A></B> 
<BR>
<BR>
<!--End of Navigation Panel-->
<!--Table of Child-Links-->
<A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>

<UL>
<LI><A NAME="tex2html1140"
  HREF="New_Features_in_Released.html#SECTION00710000000000000000">Full Restore from a Given JobId</A>
<LI><A NAME="tex2html1141"
  HREF="New_Features_in_Released.html#SECTION00720000000000000000">Source Address</A>
<LI><A NAME="tex2html1142"
  HREF="New_Features_in_Released.html#SECTION00730000000000000000">Show volume availability when doing restore</A>
<LI><A NAME="tex2html1143"
  HREF="New_Features_in_Released.html#SECTION00740000000000000000">Accurate estimate command</A>
</UL>
<!--End of Table of Child-Links-->
<HR>

<H1><A NAME="SECTION00700000000000000000">
New Features in Released Version 3.0.2</A>
</H1>

<P>
This chapter presents the new features added to the
Released Bacula Version 3.0.2.

<P>

<H1><A NAME="SECTION00710000000000000000">
Full Restore from a Given JobId</A>
</H1>
<A NAME="605"></A>

<P>
This feature allows selecting a single JobId and having Bacula
automatically select all the other jobs that comprise a full backup up to
and including the selected date (through JobId).

<P>
Assume we start with the following jobs:
<PRE>
+-------+--------------+---------------------+-------+----------+------------+
| jobid | client       | starttime           | level | jobfiles | jobbytes   |
+-------+--------------+---------------------+-------+----------+------------
| 6     | localhost-fd | 2009-07-15 11:45:49 | I     | 2        | 0          |
| 5     | localhost-fd | 2009-07-15 11:45:45 | I     | 15       | 44143      |
| 3     | localhost-fd | 2009-07-15 11:45:38 | I     | 1        | 10         |
| 1     | localhost-fd | 2009-07-15 11:45:30 | F     | 1527     | 44143073   |
+-------+--------------+---------------------+-------+----------+------------+
</PRE>

<P>
Below is an example of this new feature (which is number 12 in the
menu).

<P>
<PRE>
* restore
To select the JobIds, you have the following choices:
     1: List last 20 Jobs run
     2: List Jobs where a given File is saved
...
    12: Select full restore to a specified Job date
    13: Cancel

Select item:  (1-13): 12
Enter JobId to get the state to restore: 5
Selecting jobs to build the Full state at 2009-07-15 11:45:45
You have selected the following JobIds: 1,3,5

Building directory tree for JobId(s) 1,3,5 ...  +++++++++++++++++++
1,444 files inserted into the tree.
</PRE>

<P>
This project was funded by Bacula Systems.

<P>

<H1><A NAME="SECTION00720000000000000000">
Source Address</A>
</H1>
<A NAME="611"></A>

<P>
A feature has been added which allows the administrator to specify the address
from which the Director and File daemons will establish connections.  This
may be used to simplify system configuration overhead when working in complex
networks utilizing multi-homing and policy-routing.

<P>
To accomplish this, two new configuration directives have been implemented:
<PRE>
FileDaemon {
  FDSourceAddress=10.0.1.20    # Always initiate connections from this address
}

Director {
  DirSourceAddress=10.0.1.10   # Always initiate connections from this address
}
</PRE>

<P>
Simply adding specific host routes on the OS
would have an undesirable side-effect: any
application trying to contact the destination host would be forced to use the
more specific route possibly diverting management traffic onto a backup VLAN.
Instead of adding host routes for each client connected to a multi-homed backup
server (for example where there are management and backup VLANs), one can
use the new directives to specify a specific source address at the application
level.

<P>
Additionally, this allows the simplification and abstraction of firewall rules
when dealing with a Hot-Standby director or storage daemon configuration.  The
Hot-standby pair may share a CARP address, which connections must be sourced
from, while system services listen and act from the unique interface addresses.

<P>
This project was funded by Collaborative Fusion, Inc.

<P>

<H1><A NAME="SECTION00730000000000000000">
Show volume availability when doing restore</A>
</H1>

<P>
When doing a restore the selection dialog ends by displaying this
screen:

<P>
<PRE>
  The job will require the following
   Volume(s)                 Storage(s)                SD Device(s)
   ===========================================================================
   *000741L3                  LTO-4                     LTO3 
   *000866L3                  LTO-4                     LTO3 
   *000765L3                  LTO-4                     LTO3 
   *000764L3                  LTO-4                     LTO3 
   *000756L3                  LTO-4                     LTO3 
   *001759L3                  LTO-4                     LTO3 
   *001763L3                  LTO-4                     LTO3 
    001762L3                  LTO-4                     LTO3 
    001767L3                  LTO-4                     LTO3 

Volumes marked with ``*'' are online (in the autochanger).
</PRE>

<P>
This should help speed up large restores by minimizing the time spent
waiting for the operator to discover that he must change tapes in the library.

<P>
This project was funded by Bacula Systems.

<P>

<H1><A NAME="SECTION00740000000000000000">
Accurate estimate command</A>
</H1>

<P>
The <TT>estimate</TT> command can now use the accurate code to detect changes
and give a better estimation.

<P>
You can set the accurate behavior on the command line by using
<TT>accurate=yesno</TT> or use the Job setting as default value.

<P>
<PRE>
* estimate listing accurate=yes level=incremental job=BackupJob
</PRE>

<P>
This project was funded by Bacula Systems.

<P>
<HR>
<!--Navigation Panel-->
<A NAME="tex2html1138"
  HREF="New_Features_in_3_0_0.html">
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
<A NAME="tex2html1132"
  HREF="Bacula_Main_Reference.html">
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
<A NAME="tex2html1126"
  HREF="Released_Version_3_0_3_3_0_.html">
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
<A NAME="tex2html1134"
  HREF="Contents.html">
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A> 
<A NAME="tex2html1136"
  HREF="Thanks.html">
<IMG WIDTH="43" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="index" SRC="index.png"></A> 
<BR>
<B> Next:</B> <A NAME="tex2html1139"
  HREF="New_Features_in_3_0_0.html">New Features in 3.0.0</A>
<B> Up:</B> <A NAME="tex2html1133"
  HREF="Bacula_Main_Reference.html">Bacula Main Reference</A>
<B> Previous:</B> <A NAME="tex2html1127"
  HREF="Released_Version_3_0_3_3_0_.html">Released Version 3.0.3 and</A>
 &nbsp; <B>  <A NAME="tex2html1135"
  HREF="Contents.html">Contents</A></B> 
 &nbsp; <B>  <A NAME="tex2html1137"
  HREF="Thanks.html">Index</A></B> 
<!--End of Navigation Panel-->
<ADDRESS>

2012-01-24
</ADDRESS>
</BODY>
</HTML>