]> git.sur5r.net Git - bacula/docs/blob - docs/manuals/en/main/install.tex
main ok but web
[bacula/docs] / docs / manuals / en / main / install.tex
1 %%
2 %%
3
4 \chapter{Installing Bacula}
5 \label{InstallChapter}
6 \index[general]{Bacula!Installing}
7 \index[general]{Installing Bacula}
8
9 In general, you will need the Bacula source release, and if you want to run
10 a Windows client, you will need the Bacula Windows binary release.
11 However, Bacula needs certain third party packages (such as {\bf MySQL},
12 {\bf PostgreSQL}, or {\bf SQLite} to build and run
13 properly depending on the
14 options you specify.  Normally, {\bf MySQL} and {\bf PostgreSQL} are
15 packages that can be installed on your distribution.  However, if you do
16 not have them, to simplify your task, we have combined a number of these
17 packages into three {\bf depkgs} releases (Dependency Packages).  This can
18 vastly simplify your life by providing you with all the necessary packages
19 rather than requiring you to find them on the Web, load them, and install
20 them.
21
22 \section{Source Release Files}
23 \index[general]{Source Files}
24 \index[general]{Release Files}
25  Beginning with Bacula 1.38.0, the source code has been broken into
26  four separate tar files each corresponding to a different module in
27  the Bacula SVN. The released files are:
28
29 \begin{description}
30 \item [bacula-5.0.0.tar.gz]
31   This is the primary source code release for Bacula. On each
32   release the version number (5.0.0) will be updated.
33
34 \item [bacula-docs-5.0.0.tar.bz2]
35   This file contains a copy of the docs directory with the
36   documents prebuild. English HTML directory, single HTML
37   file, and pdf file. The French, German, Spanish translations
38   are in progress, but are not built.
39
40 \item [bacula-gui-5.0.0.tar.gz]
41   This file contains the non-core GUI programs. Currently,
42   it contains bacula-web, a PHP program for producing management
43   viewing of your Bacula job status in a browser; and bimagemgr
44   a browser program for burning CDROM images with Bacula Volumes.
45
46 \item [bacula-rescue-5.0.0.tar.gz]
47   This is the Bacula Rescue USB key code. Note, the version number
48   of this package is not always tied to the Bacula release version, so
49   it may be different.  Using this code, you can create a USB key
50   with your system configuration and containing a statically
51   linked version of the File daemon. This can permit you to easily
52   repartition and reformat your hard disks and reload your
53   system with Bacula in the case of a hard disk failure.
54
55 \item [win32bacula-5.0.0.exe]
56   This file is the 32 bit Windows installer for installing
57   the Windows client (File daemon) on a Windows machine.
58   This client will also run on 64 bit Windows machines, but
59   VSS support is not available if you are running a 64 bit
60   version of Windows.  This installer installs only the FD,
61   the Director and Storage daemon are not included.
62
63
64 \item [win64bacula-5.0.0.exe]
65   This file is the 64 bit Windows installer for installing
66   the Windows client (File daemon) on a Windows machine.
67   This client will only run on 64 bit Windows OS machines.
68   It will not run on 32 bit machines or 32 bit Windows OSes.
69   The win64bacula release is necessary for Volume Shadow
70   Copy (VSS) to work on Win64 OSes.  This installer
71   installs only the FD, the Director and Storage daemon
72   are not included.
73
74 \end{description}
75
76
77 \section{Upgrading Bacula}\label{upgrading1}
78 \index[general]{Bacula!Upgrading}
79 \index[general]{Upgrading Bacula}
80 \index[general]{Upgrading}
81
82 If you are upgrading from one Bacula version to another, you should first
83 carefully read the ReleaseNotes of all major versions between your current
84 version and the version to which you are upgrading.  In many upgrades,
85 especially for minor patch upgrades (e.g. between 3.0.0 and 3.0.1) there
86 will be no database upgrade, and hence the process is rather simple.
87
88 With version 3.0.0 and later, you {\bf must} ensure that on any one
89 machine that all components of Bacula are running on exactly the
90 same version.  Prior to version 3.0.0, it was possible to run a
91 lower level FD with a newer Director and SD.  This is no longer the
92 case.
93
94 As always, we attempt to support older File daemons. This avoids the
95 need to do a simultaneous upgrade of many machines. For exactly what
96 older versions of the FD are supported, please see the ReleaseNotes
97 for the new version.  In any case, you must always upgrade both the
98 Director and the Storage daemon at the same time, and you must also
99 upgrade any File daemon that is running on the same machine as a Director
100 or a Storage daemon (see the prior paragraph).
101
102 If the Bacula catalog
103 database has been upgraded (as it is almost every major release), you will
104 either need to reinitialize your database starting from scratch (not
105 normally a good idea), or save an ASCII copy of your database, then proceed
106 to upgrade it. If you are upgrading two major versions (e.g. 1.36 to 2.0)
107 then life will be more complicated because you must do two database
108 upgrades. See below for more on this.
109
110 Upgrading the catalog is normally done after Bacula is build and installed
111 by:
112
113 \begin{lstlisting}
114 cd <installed-scripts-dir> (default /etc/bacula)
115 ./update_bacula_tables
116 \end{lstlisting}
117
118 This update script can also be find in the Bacula source src/cats
119 directory.
120
121 If there are several database upgrades between your version and the
122 version to which you are upgrading, you will need to apply each database
123 upgrade script. For your convenience, you can find all the old upgrade scripts
124 in the {\bf upgradedb} directory of the source code. You will need to edit the
125 scripts to correspond to your system configuration. The final upgrade script,
126 if any, can be applied as noted above.
127
128 If you are upgrading from one major version to another, you will need to
129 replace all your components at the same time as generally the inter-daemon
130 protocol will change. However, within any particular release (e.g. version
131 1.32.x) unless there is an oversight or bug, the daemon protocol will not
132 change. If this is confusing, simply read the ReleaseNotes very carefully as
133 they will note if all daemons must be upgraded at the same time.
134
135 Finally, please note that in general it is not necessary or desirable
136 to do a {\bf make uninstall} before doing an upgrade providing you are careful
137 not to change the installation directories. In fact, if you do so, you will
138 most likely delete all your conf files, which could be disastrous.
139 The normal procedure during an upgrade is simply:
140
141 \begin{lstlisting}
142 ./configure (your options)
143 make
144 make install
145 \end{lstlisting}
146
147 In general none of your existing .conf or .sql files will be overwritten,
148 and you must do both the {\bf make} and {\bf make install}  commands, a
149 {\bf make install} without the preceding {\bf make} will not work.
150
151 For additional information on upgrading, please see the \bsysxrlink{Upgrading Bacula Versions}{upgrading}{problems}{section} of the \problemsman{}.
152
153 \section{Releases Numbering}
154 \index[general]{Release Numbering}
155 \index[general]{Version Numbering}
156 Every Bacula release whether beta or production has a different number
157 as well as the date of the release build. The numbering system follows
158 traditional Open Source conventions in that it is of the form.
159
160 \begin{lstlisting}
161 major.minor.release
162 \end{lstlisting}
163
164 For example:
165 \begin{lstlisting}
166 1.38.11
167 \end{lstlisting}
168
169 where each component (major, minor, patch) is a number.
170 The major number is currently 1 and normally does not change
171 very frequently.  The minor number starts at 0 and increases
172 each for each production release by 2 (i.e. it is always an
173 even number for a production release), and the patch number is
174 starts at zero each time the minor number changes.  The patch
175 number is increased each time a bug fix (or fixes) is released
176 to production.
177
178 So, as of this date (10 September 2006), the current production Bacula
179 release is version 1.38.11.  If there are bug fixes, the next release
180 will be 1.38.12 (i.e. the patch number has increased by one).
181
182 For all patch releases where the minor version number does not change,
183 the database and all the daemons will be compatible.  That means that
184 you can safely run a 1.38.0 Director with a 1.38.11 Client.  Of course,
185 in this case, the Director may have bugs that are not fixed. Generally,
186 within a minor release (some minor releases are not so minor), all
187 patch numbers are officially released to production. This means that while
188 the current Bacula version is 1.38.11, versions 1.38.0, 1.38.1, ... 1.38.10
189 have all been previously released.
190
191 When the minor number is odd, it indicates that the package is under
192 development and thus may not be stable. For example, while the current
193 production release of Bacula is currently 1.38.11, the current development
194 version is 1.39.22. All patch versions of the development code are
195 available in the SVN (source repository).  However, not all patch versions
196 of the development code (odd minor version) are officially released. When
197 they are released, they are released as beta versions (see below for a
198 definition of what beta means for Bacula releases).
199
200 In general when the minor number increases from one production release
201 to the next (i.e. 1.38.x to 1.40.0), the catalog database must be upgraded,
202 the Director and Storage daemon must always be on the same minor release
203 number, and often (not always), the Clients must also be on the same minor
204 release. As often as possible, we attempt to make new releases that are
205 downwards compatible with prior clients, but this is not always possible.
206 You must check the release notes.  In general, you will have fewer problems
207 if you always run all the components on the same minor version number (i.e.
208 all either 1.38.x or 1.40.x but not mixed).
209
210
211 \label{BetaReleases}
212 \section*{Beta Releases}
213 \index[general]{Beta Releases}
214 Towards the end of the development cycle, which typically runs
215 one year from a major release to another, there will be several beta
216 releases of the development code prior to a production release.
217 As noted above, beta versions always have odd minor version numbers
218 (e.g 1.37.x or 1.39.x).
219 The purpose of the beta releases is to allow early adopter users to test
220 the new code.  Beta releases are made with the following considerations:
221
222 \begin{bsysitemize}
223 \item The code passes the regression testing on FreeBSD, Linux, and Solaris
224   machines.
225
226 \item There are no known major bugs, or on the rare occasion that
227   there are, they will be documented or already in the bugs database.
228
229 \item Some of the new code/features may not yet be tested.
230
231 \item Bugs are expected to be found, especially in the new
232   code before the final production release.
233
234 \item The code will have been run in production in at least one small
235   site (mine).
236
237 \item The Win32 client will have been run in production at least
238   one night at that small site.
239
240 \item The documentation in the manual is unlikely to be complete especially
241   for the new features, and the Release Notes may not be fully
242   organized.
243
244 \item Beta code is not generally recommended for everyone, but
245   rather for early adopters.
246 \end{bsysitemize}
247
248
249 \label{Dependency}
250 \section{Dependency Packages}
251 \index[general]{Dependency Packages}
252 \index[general]{Packages!Dependency}
253
254 As discussed above, we have combined a number of third party packages that
255 Bacula might need into the {\bf depkgs} release. You can,
256 of course, get the latest packages from the original authors or
257 from your operating system supplier. The locations of
258 where we obtained the packages are in the README file in each package.
259 However, be aware that the packages in the depkgs files have been tested by us
260 for compatibility with Bacula.
261
262 Typically, a dependency package will be named {\bf depkgs-ddMMMyy.tar.gz}
263 where {\bf dd} is the day we release it, {\bf MMM}
264 is the abbreviated month (e.g. Jan), and {\bf yy} is the year. An actual
265 example is: {\bf depkgs-18Dec.tar.gz}. To install and build this package (if
266 needed), you do the following:
267
268 \begin{enumerate}
269 \item Create a {\bf bacula} directory, into which you will place  both the
270    Bacula source as well as the dependency package.
271 \item Detar the {\bf depkgs} into the {\bf bacula} directory.
272 \item cd bacula/depkgs
273 \item make
274 \end{enumerate}
275
276 Although the exact composition of the dependency packages may change from time
277 to time, the current makeup is the following:
278
279 %\addcontentsline{lot}{table}{Dependency Packages}
280 \LTXtable{0.95\linewidth}{table_dependencies}
281 Note, some of these packages are quite large, so that building them can be a
282 bit time consuming. The above instructions will build all the packages
283 contained in the directory. However, when building Bacula, it will take only
284 those pieces that it actually needs.
285
286 Alternatively, you can make just the packages that are needed. For example,
287
288 \footnotesize
289 \begin{lstlisting}
290 cd bacula/depkgs
291 make sqlite
292 \end{lstlisting}
293 \normalsize
294
295 will configure and build only the SQLite package.
296
297 You should build the packages that you will require in {\bf depkgs} a
298 prior to configuring and building Bacula, since Bacula will need
299 them during the build process.
300
301 Note, the {\bf depkgs-qt} package is required for building bat, because
302 bat is currently built with Qt version 4.3.4.  It can be built with other
303 Qt versions, but that almost always creates problems or introduces
304 instabilities.
305
306 You can build the depkgs-qt with the following:
307
308 \footnotesize
309 \begin{lstlisting}
310 cd bacula
311 tar xfvz depkgs-qt-28Jul09.tar.gz
312 cd depkgs-qt
313 make qt4
314 source qt4-path
315 \end{lstlisting}
316 \normalsize
317
318 Doing the {\bf source qt4-path} defines the following environment
319 variables:
320
321 \footnotesize
322 \begin{lstlisting}
323 QTDIR
324 QTLIB
325 QTINC
326 \end{lstlisting}
327 \normalsize
328
329 Each one should point to a specific location in the depkgs-qt package
330 that you loaded.  It also puts the depkgs-qt/qt4/bin directory
331 on your path before all other directories.  This ensures that
332 the bat build will use your Qt 4.3.4 library rather than any that
333 might be on your system.
334
335 Before running your Bacula build, please make sure that
336 {\bf qmake-qt4} is not on your path.  If it is please rename it. If
337 you don't do this, Bacula will attempt to build with any Qt4 package
338 installed on your system rather than the one you just built.
339 If you logoff and log back in, you must re-source the depkgs-qt/qt4-patch
340 file before attempting to rebuild the bat part of Bacula.
341
342 For more information on the {\bf depkgs-qt} package, please read the
343 INSTALL file in the main directory of that package. If you are going to
344 build Qt4 using {\bf depkgs-qt}, you must source the {\bf qt4-paths} file
345 included in the package prior to building Bacula. Please read the INSTALL
346 file for more details.
347
348 Even if you do not use SQLite, you might find it worthwhile to build {\bf mtx}
349 because the {\bf tapeinfo} program that comes with it can often provide you
350 with valuable information about your SCSI tape drive (e.g. compression,
351 min/max block sizes, ...). Note, most distros provide {\bf mtx} as part of
352 their release.
353
354 The {\bf depkgs1} package is depreciated and previously contained
355 readline, which should be available on all operating systems.
356
357 The {\bf depkgs-win32} package is deprecated and no longer used in
358 Bacula version 1.39.x and later. It was previously used to build
359 the native Win32 client program, but this program is now built on Linux
360 systems using cross-compiling.  All the tools and third party libraries
361 are automatically downloaded by executing the appropriate scripts.  See
362 src/win32/README.mingw32 for more details.
363
364 \section{Supported Operating Systems}
365 \label{Systems}
366 \index[general]{Systems!Supported Operating}
367 \index[general]{Supported Operating Systems}
368
369 Please see the
370 \ilink{ Supported Operating Systems}{SupportedOSes} section
371 of the QuickStart chapter of this manual.
372
373 \section{Building Bacula from Source}
374 \label{Building}
375 \index[general]{Source!Building Bacula from}
376 \index[general]{Building Bacula from Source}
377
378 The basic installation is rather simple.
379
380 \begin{enumerate}
381 \item Install and build any {\bf depkgs} as noted above. This
382    should be unnecessary on most modern Operating Systems.
383
384 \item Configure and install MySQL or PostgreSQL (if desired).
385    \ilink{Installing and Configuring MySQL Phase I}{MySqlChapter} or
386    \ilink{Installing and Configuring PostgreSQL Phase
387    I}{PostgreSqlChapter}.  If you are installing from rpms, and are
388    using MySQL, please be sure to install  {\bf mysql-devel}, so that the MySQL
389    header files are available  while compiling Bacula. In addition, the MySQL
390    client  library {\bf mysqlclient} requires the gzip compression library  {\bf
391    libz.a} or {\bf libz.so}. If you are using rpm packages,  these libraries are
392    in the {\bf libz-devel} package. On Debian  systems, you will need to load the
393    {\bf zlib1g-dev} package. If  you are not using rpms or debs, you will need to
394    find the  appropriate package for your system.
395
396    Note, if you already have a running MySQL or PostgreSQL on your system, you
397    can skip this phase provided that you have built the thread  safe libraries.
398    And you have already installed the additional  rpms noted above.
399
400    SQLite is not supported on Solaris. This is because it
401    frequently fails with bus errors.  However SQLite3 may work.
402
403 \item Detar the Bacula source code preferably into the {\bf bacula}  directory
404    discussed above.
405
406 \item {\bf cd} to the directory containing the source code.
407
408 \item ./configure (with appropriate options as described below). Any
409    path names you specify as options on the ./configure command line
410    must be absolute paths and not relative.
411
412 \item Check the output of ./configure very carefully, especially  the Install
413    binaries and Install config directories.  If they are not correct,
414    please rerun ./configure until they  are. The output from ./configure is
415    stored in {\bf config.out}  and can be re-displayed at any time without
416    rerunning the  ./configure by doing {\bf cat config.out}.
417
418 \item If after running ./configure once, you decide to change options  and
419    re-run it, that is perfectly fine, but before re-running it,  you should run:
420
421 \footnotesize
422 \begin{lstlisting}
423       make distclean
424 \end{lstlisting}
425 \normalsize
426
427 so that you are sure to start from scratch and not have a  mixture of the two
428 options. This is because ./configure  caches much of the information. The {\bf
429 make distclean}  is also critical if you move the source directory from one
430 machine to another. If the {\bf make distclean} fails,  just ignore it and
431 continue on.
432
433 \item make
434    If you get errors while linking in the Storage daemon directory
435    (src/stored), it is probably because you have not loaded the static
436    libraries on your system.  I noticed this problem on a Solaris system.
437    To correct it, make sure that you have not added {\bf
438    {-} {-}enable-static-tools} to the {\bf ./configure} command.
439
440    If you skip this step ({\bf make}) and proceed immediately to the {\bf
441    make install} you are making two serious errors: 1.  your install will
442    fail because Bacula requires a {\bf make} before a {\bf make install}.
443    2.  you are depriving yourself of the chance to make sure there are no
444    errors before beginning to write files to your system directories.
445
446
447 \item make install
448    Please be sure you have done a {\bf make} before entering this command,
449    and that everything has properly compiled and linked without errors.
450
451
452 \item If you are new to Bacula, we {\bf strongly} recommend that you skip
453    the next step and use the default configuration files, then run the
454    example program in the next chapter, then come back and modify your
455    configuration files to suit your particular needs.
456
457 \item Customize the configuration files for each of the three daemons
458    (Directory, File, Storage) and for the Console program.  For the details
459    of how to do this, please see \ilink{Setting Up Bacula Configuration
460    Files}{ConfigureChapter} in the Configuration chapter of this manual.  We
461    recommend that you start by modifying the default configuration files
462    supplied, making the minimum changes necessary.  Complete customization
463    can be done after you have Bacula up and running.  Please take care when
464    modifying passwords, which were randomly generated, and the {\bf Name}s
465    as the passwords and names must agree between the configuration files
466    for security reasons.
467
468 \label{CreateDatabase}
469 \item Create the Bacula MySQL database and tables
470    (if using MySQL)
471       \ilink{Installing and Configuring MySQL Phase II}{mysql_phase2} or
472       create the Bacula PostgreSQL database and tables
473    \ilink{Configuring PostgreSQL
474    II}{PostgreSQL_configure} or alternatively  if you are using
475    SQLite \ilink{Installing and Configuring SQLite Phase II}{phase2}.
476
477 \item Start Bacula ({\bf ./bacula start}) Note. the next chapter  shows you
478    how to do this in detail.
479
480 \item Interface with Bacula using the Console program
481
482 \item For the previous two items, please follow the instructions  in the
483    \ilink{Running Bacula}{TutorialChapter} chapter of  this manual,
484    where you will run a simple backup and do a  restore. Do this before you make
485    heavy modifications to the  configuration files so that you are sure that
486    Bacula works  and are familiar with it. After that changing the conf files
487    will be easier.
488
489 \item If after installing Bacula, you decide to "move it", that is  to
490    install it in a different set of directories, proceed  as follows:
491
492 \footnotesize
493 \begin{lstlisting}
494       make uninstall
495       make distclean
496       ./configure (your-new-options)
497       make
498       make install
499
500 \end{lstlisting}
501 \normalsize
502
503 \end{enumerate}
504
505 If all goes well, the {\bf ./configure} will correctly determine which
506 operating system you are running and configure the source code appropriately.
507 Currently, FreeBSD, Linux (Red Hat), and Solaris are supported. The Bacula
508 client (File daemon) is reported to work with MacOS X 10.3 is if
509 readline support is not enabled (default) when building the client.
510
511 If you install Bacula on more than one system, and they are identical, you can
512 simply transfer the source tree to that other system and do a "make
513 install". However, if there are differences in the libraries or OS versions,
514 or you wish to install on a different OS, you should start from the original
515 compress tar file. If you do transfer the source tree, and you have previously
516 done a ./configure command, you MUST do:
517
518 \footnotesize
519 \begin{lstlisting}
520 make distclean
521 \end{lstlisting}
522 \normalsize
523
524 prior to doing your new ./configure. This is because the GNU autoconf tools
525 cache the configuration, and if you re-use a configuration for a Linux machine
526 on a Solaris, you can be sure your build will fail. To avoid this, as
527 mentioned above, either start from the tar file, or do a "make distclean".
528
529 In general, you will probably want to supply a more complicated {\bf
530 configure} statement to ensure that the modules you want are built and that
531 everything is placed into the correct directories.
532
533 For example, on Fedora, Red Hat, or SuSE one could use the following:
534
535 \footnotesize
536 \begin{lstlisting}
537 CFLAGS="-g -Wall" \
538   ./configure \
539     --sbindir=$HOME/bacula/bin \
540     --sysconfdir=$HOME/bacula/bin \
541     --with-pid-dir=$HOME/bacula/bin/working \
542     --with-subsys-dir=$HOME/bacula/bin/working \
543     --with-mysql \
544     --with-working-dir=$HOME/bacula/bin/working \
545     --with-dump-email=$USER
546 \end{lstlisting}
547 \normalsize
548
549 The advantage of using the above configuration to start is that
550 everything will be put into a single directory, which you can later delete
551 once you have run the examples in the next chapter and learned how Bacula
552 works. In addition, the above can be installed and run as non-root.
553
554 For the developer's convenience, I have added a {\bf defaultconfig} script to
555 the {\bf examples} directory. This script contains the statements that you
556 would normally use, and each developer/user may modify them to suit his needs.
557 You should find additional useful examples in this directory as well.
558
559 The {\bf \lstinline:--:enable-conio} or {\bf \lstinline:--:enable-readline} options are
560 useful because they provide a command line history, editing capability for the
561 Console program and tab completion on various option. If you have included
562 either option in the build, either the {\bf termcap} or the {\bf ncurses}
563 package will be needed to link. On most systems, including Red Hat and SuSE,
564 you should include the ncurses package.  If Bacula's configure process finds
565 the ncurses libraries, it will use those rather than the termcap library.  On
566 some systems, such as SuSE, the termcap library is not in the standard library
567 directory.  As a consequence, the option may be disabled or you may get an
568 error message such as:
569
570 \footnotesize
571 \begin{lstlisting}
572 /usr/lib/gcc-lib/i586-suse-linux/3.3.1/.../ld:
573 cannot find -ltermcap
574 collect2: ld returned 1 exit status
575 \end{lstlisting}
576 \normalsize
577
578 while building the Bacula Console. In that case, you will need to set the {\bf
579 LDFLAGS} environment variable prior to building.
580
581 \footnotesize
582 \begin{lstlisting}
583 export LDFLAGS="-L/usr/lib/termcap"
584 \end{lstlisting}
585 \normalsize
586
587 The same library requirements apply if you wish to use the readline subroutines
588 for command line editing, history and tab completion or if you are using a
589 MySQL library that requires encryption. If you need encryption, you can either
590 export the appropriate additional library options as shown above or,
591 alternatively, you can include them directly on the ./configure line as in:
592
593 \footnotesize
594 \begin{lstlisting}
595 LDFLAGS="-lssl -lcyrpto" \
596    ./configure <your-options>
597 \end{lstlisting}
598 \normalsize
599
600 On some systems such as Mandriva, readline tends to
601 gobble up prompts, which makes it totally useless. If this happens to you, use
602 the disable option, or if you are using version 1.33 and above try using {\bf
603 \lstinline:--:enable-conio} to use a built-in readline replacement. You will still need
604 either the termcap or the ncurses library, but it is unlikely that the {\bf conio}
605 package will gobble up prompts.
606
607 readline is no longer supported after version 1.34.  The code within Bacula
608 remains, so it should be usable, and if users submit patches for it, we will
609 be happy to apply them.  However, due to the fact that each version of
610 readline seems to be incompatible with previous versions, and that there
611 are significant differences between systems, we can no longer afford to
612 support it.
613
614 \section{What Database to Use?}
615 \label{DB}
616 \index[general]{What Database to Use?}
617 \index[general]{Use!What Database to}
618
619 Before building Bacula you need to decide if you want to use SQLite, MySQL, or
620 PostgreSQL. If you are not already running MySQL or PostgreSQL, you might
621 want to start by testing with SQLite (not supported on Solaris).
622 This will greatly simplify the setup for you
623 because SQLite is compiled into Bacula an requires no administration. It
624 performs well and is suitable for small to medium sized installations (maximum
625 10-20 machines). However, we should note that a number of users have
626 had unexplained database corruption with SQLite. For that reason, we
627 recommend that you install either PostgreSQL or MySQL for production
628 work.
629
630 If you wish to use MySQL as the Bacula catalog, please see the
631 \ilink{Installing and Configuring MySQL}{MySqlChapter} chapter of this
632 manual. You will need to install MySQL prior to continuing with the
633 configuration of Bacula. MySQL is a high quality database that is very
634 efficient and is suitable for small and medium sized installation (up to
635 2,000,000 files per job). It is slightly more complicated than SQLite to setup
636 and administer because it has a number of sophisticated features such as
637 userids and passwords. It runs as a separate process, is truly professional and
638 can manage a database of any size.
639
640 If you wish to use PostgreSQL as the Bacula catalog, please see the
641 \ilink{Installing and Configuring PostgreSQL}{PostgreSqlChapter} chapter of
642 this manual. You will need to install PostgreSQL prior to continuing with the
643 configuration of Bacula. PostgreSQL is very similar to MySQL, though it tends
644 to be slightly more SQL92 compliant and has many more advanced features such as
645 transactions, stored procedures, and the such. It requires a certain knowledge
646 to install and maintain. PostgreSQL is suitable for any sized installation
647 (some sites have much more than 1 billion objects in the Catalog). Bacula uses
648 many optimized PostgreSQL functions, and can run more than 10 time faster on
649 jobs having millions of files than MySQL (Specially in during restore, accurate
650 mode, bvfs queries and when the database server is not on the same host than
651 the Director). It's possible to switch from MySQL/SQLite to PostgreSQL, but it
652 requires some DBA knowledge.
653
654 If you wish to use SQLite as the Bacula catalog, please see
655 \ilink{Installing and Configuring SQLite}{SqlLiteChapter} chapter of
656 this manual. SQLite is not supported on Solaris.
657
658 \section{Quick Start}
659 \index[general]{Quick Start}
660 \index[general]{Start!Quick}
661
662 There are a number of options and important considerations given below
663 that you can skip for the moment if you have not had any problems building
664 Bacula with a simplified configuration as shown above.
665
666 If the ./configure process is unable to find specific libraries (e.g.
667 libintl, you should ensure that the appropriate package is installed on
668 your system. Alternatively, if the package is installed in a non-standard
669 location (as far as Bacula is concerned), then there is generally an
670 option listed below (or listed with "./configure {-} {-}help" that will
671 permit you to specify the directory that should be searched. In other
672 cases, there are options that will permit you to disable to feature
673 (e.g. {-} {-}disable-nls).
674
675 If you want to dive right into it, we recommend you skip to the next chapter,
676 and run the example program. It will teach you a lot about Bacula and as an
677 example can be installed into a single directory (for easy removal) and run as
678 non-root. If you have any problems or when you want to do a real installation,
679 come back to this chapter and read the details presented below.
680
681 \section{Configure Options}
682 \label{Options}
683 \index[general]{Options!Configure}
684 \index[general]{Configure Options}
685
686 The following command line options are available for {\bf configure} to
687 customize your installation.
688
689 \begin{description}
690 \item [ \--prefix=\lt{}patch\gt{}]
691    \index[general]{{-}prefix}
692    This option is meant to allow you to direct where the architecture
693    independent files should be placed.  However, we find this a somewhat
694    vague concept, and so we have not implemented this option other than
695    to use any explicit prefix that you may define.  If you do not
696    explicitly specify a prefix, Bacula's configure routine will not use
697    the default value that ./configure --help prints.
698    As a consequence, we suggest that
699    you avoid it. We have provided options that allow you to explicitly
700    specify the directories for each of the major categories of installation
701    files.
702 \item [ {-}{\-}sbindir=\lt{}binary-path\gt{}]
703    \index[general]{{-}{\-}sbindir}
704    Defines where the Bacula  binary (executable) files will be placed during a
705    {\bf make  install} command.
706
707 \item [ {-}{\-}sysconfdir=\lt{}config-path\gt{}]
708    \index[general]{{-}{\-}sysconfdir}
709    Defines where the Bacula configuration files should be placed during a
710    {\bf make install} command.
711
712 \item [ {-}{\-}mandir=\lt{}path\gt{}]
713    \index[general]{{-}{\-}mandir}
714    Note, as of Bacula version 1.39.14, the meaning of any path
715    specified on this option is change from prior versions. It
716    now specifies the top level man directory.
717    Previously the mandir specified the full path to where you
718    wanted the man files installed.
719    The man files will be installed in gzip'ed format under
720    mandir/man1 and mandir/man8 as appropriate.
721    For the install to succeed you must have {\bf gzip} installed
722    on your system.
723
724    By default, Bacula will install the Unix man pages in
725    /usr/share/man/man1 and /usr/share/man/man8.
726    If you wish the man page to be installed in
727    a different location, use this option to specify the path.
728    Note, the main HTML and PDF Bacula documents are in a separate
729    tar file that is not part of the source distribution.
730
731 \item [ {-}{\-}datadir=\lt{}path\gt{} ]
732    \index[general]{{-}{\-}datadir}
733    If you translate Bacula or parts of Bacula into a different language
734    you may specify the location of the po files using the {\bf
735    {-}{\-}datadir} option. You must manually install any po files as
736    Bacula does not (yet) automatically do so.
737
738 \item [ {-}{\-}disable-ipv6 ]
739    \index[general]{{-}{\-}disable-ipv6}
740
741 \item [ {-}{\-}enable-smartalloc ]
742    \index[general]{{-}{\-}enable-smartalloc}
743    This enables the inclusion of the Smartalloc orphaned buffer detection
744    code.  This option is highly recommended.  Because we never build
745    without this option, you may experience problems if it is not enabled.
746    In this case, simply re-enable the option.  We strongly recommend
747    keeping this option enabled as it helps detect memory leaks.  This
748    configuration parameter is used while building Bacula
749
750 \item [ {-}{\-}enable-bat ]
751    \label{enablebat}
752    \index[general]{{-}{\-}enable-bat}
753    If you have Qt4 >= 4.3.4 installed on your computer including the
754    libqt4 and libqt4-devel (libqt4-dev on Debian) libraries, and you want
755    to use the Bacula Administration Tool (bat) GUI Console interface to
756    Bacula, you must specify this option.  Doing so will build everything in
757    the {\bf src/qt-console} directory.  The build with enable-bat will work
758    only with a full Bacula build (i.e. it will not work with a client-only
759    build).
760
761    Qt4 is available on OpenSUSE 10.2, CentOS 5, Fedora, and Debian. If it
762    is not available on your system, you can download the {\bf depkgs-qt}
763    package from the Bacula Source Forge download area and build it.
764    See the
765    INSTALL file in that package for more details. In particular to use
766    the Qt4 built by {\bf depkgs-qt} you {\bf must} source the file
767    {\bf qt4-paths}.
768
769 \item [ {-}{\-}enable-batch-insert ]
770    \index[general]{{-}{\-}enable-batch-insert}
771    This option enables batch inserts of the attribute records (default) in
772     the catalog database, which is much faster (10 times or more) than
773    without this option for large numbers of files. However, this option
774    will automatically be disabled if your SQL libraries are not
775    thread safe. If you find that batch mode is not enabled on your Bacula
776    installation, then your database most likely does not support threads.
777
778    SQLite2 is not thread safe.  Batch insert cannot be enabled when using
779    SQLite2
780
781    On most systems, MySQL, PostgreSQL and SQLite3 are thread safe.
782
783    To verify that your PostgreSQL is thread safe, you can try this
784    (change the path to point to your particular installed libpq.a;
785    these commands were issued on FreeBSD 6.2):
786
787 \begin{lstlisting}
788 $ nm /usr/local/lib/libpq.a | grep PQputCopyData
789 00001b08 T PQputCopyData
790 $ nm /usr/local/lib/libpq.a | grep mutex
791          U pthread_mutex_lock
792          U pthread_mutex_unlock
793          U pthread_mutex_init
794          U pthread_mutex_lock
795          U pthread_mutex_unlock
796 \end{lstlisting}
797
798    The above example shows a libpq that contains the required function
799    PQputCopyData and is thread enabled (i.e. the pthread\_mutex* entries).
800    If you do not see PQputCopyData, your version of PostgreSQL is too old
801    to allow batch insert.  If you do not see the mutex entries, then thread
802    support has not been enabled. Our tests indicate you usually need to
803    change the configuration options and recompile/reinstall the PostgreSQL
804    client software to get thread support.
805
806    Bacula always links to the thread safe MySQL libraries.
807
808    Running with Batch Insert turned on is recommended because it can
809    significantly improve attribute insertion times. However, it does
810    put a significantly larger part of the work on your SQL engine, so
811    you may need to pay more attention to tuning it. In particular,
812    Batch Insert can require large temporary table space, and consequently,
813    the default location (often /tmp) may run out of space causing errors.
814    For MySQL, the location is set in my.conf with "tmpdir".  You may also
815    want to increase the memory available to your SQL engine to further
816    improve performance during Batch Inserts.
817
818 \item [ {-}{\-}enable-bwx-console ]
819    \index[general]{{-}{\-}enable-bwx-console}
820    If you have wxWidgets installed on your computer and you want to use the
821    wxWidgets GUI Console interface to Bacula, you must specify this option.
822    Doing so will build everything in the {\bf src/wx-console} directory.
823    This could also be useful to users who want a GUI Console and don't want
824    to install QT, as wxWidgets can work with GTK+, Motif or even X11
825    libraries.
826
827 \item [ {-}{\-}enable-tray-monitor ]
828    \index[general]{{-}{\-}enable-tray-monitor}
829    If you have GTK installed on your computer, you run a graphical
830    environment or a window manager compatible with the FreeDesktop system
831    tray standard (like KDE and GNOME) and you want to use a GUI to monitor
832    Bacula daemons, you must specify this option.  Doing so will build
833    everything in the {\bf src/tray-monitor} directory. Note, due to
834    restrictions on what can be linked with GPLed code, we were forced to
835    remove the egg code that dealt with the tray icons and replace it by
836    calls to the GTK+ API, and unfortunately, the tray icon API necessary
837    was not implemented until GTK version 2.10 or later.
838
839 \item [ {-}{\-}enable-static-tools]
840    \index[general]{{-}{\-}enable-static-tools}
841    This option causes the linker to link the Storage daemon utility tools
842    ({\bf bls}, {\bf bextract}, and {\bf bscan}) statically.  This permits
843    using them without having the shared libraries loaded.  If you have
844    problems linking in the {\bf src/stored} directory, make sure you have
845    not enabled this option, or explicitly disable static linking by adding
846    {\bf \lstinline:--:disable-static-tools}.
847
848 \item [ {-}{\-}enable-static-fd]
849    \index[general]{{-}{\-}enable-static-fd}
850    This option causes the make process to build a {\bf static-bacula-fd} in
851    addition to the standard File daemon.  This static version will include
852    statically linked libraries and is required for the Bare Metal recovery.
853    This option is largely superseded by using {\bf make static-bacula-fd}
854    from with in the {\bf src/filed} directory.  Also, the {\bf
855    \lstinline:--:enable-client-only} option described below is useful for just
856    building a client so that all the other parts of the program are not
857    compiled.
858
859    When linking a static binary, the linker needs the static versions
860    of all the libraries that are used, so frequently users will
861    experience linking errors when this option is used. The first
862    thing to do is to make sure you have the static glibc library
863    installed on your system. The second thing to do is the make sure
864    you do not specify {\bf {-}{\-}openssl} or {\bf {-}{\-}with-python}
865    on your ./configure statement as these options require additional
866    libraries. You may be able to enable those options, but you will
867    need to load additional static libraries.
868
869
870 \item [ {-}{\-}enable-static-sd]
871    \index[general]{{-}{\-}enable-static-sd}
872    This option causes the make process to build a {\bf static-bacula-sd} in
873    addition to the standard Storage daemon.  This static version will
874    include statically linked libraries and could be useful during a Bare
875    Metal recovery.
876
877    When linking a static binary, the linker needs the static versions
878    of all the libraries that are used, so frequently users will
879    experience linking errors when this option is used. The first
880    thing to do is to make sure you have the static glibc library
881    installed on your system. The second thing to do is the make sure
882    you do not specify {\bf {-}{\-}openssl} or {\bf {-}{\-}with-python}
883    on your ./configure statement as these options require additional
884    libraries. You may be able to enable those options, but you will
885    need to load additional static libraries.
886
887
888 \item [ {-}{\-}enable-static-dir]
889    \index[general]{{-}{\-}enable-static-dir}
890    This option causes the make process to build a {\bf static-bacula-dir}
891    in addition to the standard Director.  This static version will include
892    statically linked libraries and could be useful during a Bare Metal
893    recovery.
894
895    When linking a static binary, the linker needs the static versions
896    of all the libraries that are used, so frequently users will
897    experience linking errors when this option is used. The first
898    thing to do is to make sure you have the static glibc library
899    installed on your system. The second thing to do is the make sure
900    you do not specify {\bf {-}{\-}openssl} or {\bf {-}{\-}with-python}
901    on your ./configure statement as these options require additional
902    libraries. You may be able to enable those options, but you will
903    need to load additional static libraries.
904
905
906 \item [ {-}{\-}enable-static-cons]
907    \index[general]{{-}{\-}enable-static-cons}
908    This option causes the make process to build a {\bf static-console} in
909    addition to the standard console.  This static version will include
910    statically linked libraries and could be useful during a Bare Metal
911    recovery.
912
913    When linking a static binary, the linker needs the static versions
914    of all the libraries that are used, so frequently users will
915    experience linking errors when this option is used. The first
916    thing to do is to make sure you have the static glibc library
917    installed on your system. The second thing to do is the make sure
918    you do not specify {\bf {-}{\-}openssl} or {\bf {-}{\-}with-python}
919    on your ./configure statement as these options require additional
920    libraries. You may be able to enable those options, but you will
921    need to load additional static libraries.
922
923
924 \item [ {-}{\-}enable-client-only]
925    \index[general]{{-}{\-}enable-client-only}
926    This option causes the make process to build only the File daemon and
927    the libraries that it needs.  None of the other daemons, storage tools,
928    nor the console will be built.  Likewise a {\bf make install} will then
929    only install the File daemon.  To cause all daemons to be built, you
930    will need to do a configuration without this option.  This option
931    greatly facilitates building a Client on a client only machine.
932
933    When linking a static binary, the linker needs the static versions
934    of all the libraries that are used, so frequently users will
935    experience linking errors when this option is used. The first
936    thing to do is to make sure you have the static glibc library
937    installed on your system. The second thing to do is the make sure
938    you do not specify {\bf {-}{\-}openssl} or {\bf {-}{\-}with-python}
939    on your ./configure statement as these options require additional
940    libraries. You may be able to enable those options, but you will
941    need to load additional static libraries.
942
943 \item [ {-}{\-}enable-build-dird]
944    \index[general]{{-}{\-}enable-build-dird}
945    This option causes the make process to build the Director and the
946    Director's tools. By default, this option is on, but you may turn
947    it off by using {\bf {-}{\-}disable-build-dird} to prevent the
948    Director from being built.
949
950 \item [ {-}{\-}enable-build-stored]
951    \index[general]{{-}{\-}enable-build-stored}
952    This option causes the make process to build the Storage daemon.
953    By default, this option is on, but you may turn
954    it off by using {\bf {-}{\-}disable-build-stored} to prevent the
955    Storage daemon from being built.
956
957
958 \item [ {-}{\-}enable-largefile]
959    \index[general]{{-}{\-}enable-largefile}
960    This option (default) causes  Bacula to be built with 64 bit file address
961    support if it  is available on your system. This permits Bacula to read and
962    write files greater than 2 GBytes in size. You may disable this  feature and
963    revert to 32 bit file addresses by using  {\bf \lstinline:--:disable-largefile}.
964
965 \item [ {-}{\-}disable-nls]
966    \index[general]{{-}{\-}disable-nls}
967    By default, Bacula uses the GNU Native Language Support (NLS) libraries. On
968    some machines, these libraries may not be present or may not function
969    correctly (especially on non-Linux implementations). In such cases, you
970    may specify {\bf {-}{\-}disable-nls} to disable use of those libraries.
971    In such a case, Bacula will revert to using English.
972
973 \item [ {-}{\-}disable-ipv6 ]
974    \index[general]{{-}{\-}disable-ipv6}
975    By default, Bacula enables IPv6 protocol. On some systems, the files
976    for IPv6 may exist, but the functionality could be turned off in the
977    kernel. In that case, in order to correctly build Bacula, you will
978    explicitly need to use this option so that Bacula does not attempt
979    to reference OS function calls that do not exist.
980
981 \item [ {-}{\-}with-sqlite3=\lt{}sqlite3-path\gt{}]
982    \index[general]{{-}{\-}with-sqlite3}
983    This enables use of the SQLite version 3.x database.  The {\bf
984    sqlite3-path} is not normally specified as Bacula looks for the
985    necessary components in a standard location ({\bf depkgs/sqlite3}).  See
986    \ilink{Installing and Configuring SQLite}{SqlLiteChapter} chapter of
987    this manual for more details. SQLite3 is not supported on Solaris.
988
989 \item [ {-}{\-}with-mysql=\lt{}mysql-path\gt{}]
990    \index[general]{{-}{\-}with-mysql}
991    This enables building of the Catalog services for Bacula.  It assumes
992    that MySQL is running on your system, and expects it to be installed in
993    the {\bf mysql-path} that you specify.  Normally, if MySQL is installed
994    in a standard system location, you can simply use {\bf {-}{\-}with-mysql}
995    with no path specification.  If you do use this option, please proceed
996    to installing MySQL in the \ilink{Installing and Configuring
997    MySQL}{MySqlChapter} chapter before proceeding with the configuration.
998
999    See the note below under the {-}{\-}with-postgresql item.
1000
1001 \item [ {-}{\-}with-postgresql=\lt{}path\gt{}]
1002    \index[general]{{-}{\-}with-postgresql}
1003    This provides an explicit path to the PostgreSQL libraries if Bacula
1004    cannot find it by default.  Normally to build with PostgreSQL, you would
1005    simply use {\bf {-}{\-}with-postgresql}.
1006
1007    Note, for Bacula to be configured properly, you must specify one
1008    of the four database options supported.  That is:
1009    {-}{\-}with-sqlite, {-}{\-}with-sqlite3, {-}{\-}with-mysql, or
1010    {-}{\-}with-postgresql, otherwise the ./configure will fail.
1011
1012 \item [ {-}{\-}with-openssl=\lt{}path\gt{}]
1013    This configuration option is necessary if you want to enable TLS (ssl),
1014    which encrypts the communications within
1015    Bacula or if you want to use File Daemon PKI data encryption.
1016    Normally, the {\bf path} specification is not necessary since
1017    the configuration searches for the OpenSSL libraries in standard system
1018    locations. However, you must ensure that all the libraries are
1019    loaded including {\bf libssl-dev} or the equivalent on your
1020    system. Enabling OpenSSL in Bacula permits secure communications
1021    between the daemons and/or data encryption in the File daemon.
1022    For more information on using TLS, please see the
1023    \ilink{Bacula TLS -- Communications Encryption}{CommEncryption} chapter
1024    of this manual.
1025    For more information on using PKI data encryption, please see the
1026    \ilink{Bacula PKI -- Data Encryption}{DataEncryption}
1027    chapter of this manual.
1028
1029    If you get errors linking, you need to load the development libraries,
1030    or you need to disable SSL by setting without-openssl.
1031
1032
1033 \item [ {-}{\-}with-python=\lt{}path\gt{}]
1034    \index[general]{{-}{\-}with-python}
1035    This option enables Bacula support for Python.  If no path is supplied,
1036    configure will search the standard library locations for Python 2.2,
1037    2.3, 2.4, or 2.5.  If it cannot find the library, you will need to
1038    supply a path to your Python library directory.  Please see the
1039    \bsysxrlink{Python Scripting}
1040    {PythonChapter}{misc}{chapter} of the \miscman{} for the details of using Python
1041    scripting.
1042
1043 \item [ {-}{\-}with-libintl-prefix=\lt{}DIR\gt{}]
1044    \index[general]{{-}{\-}with-libintl-prefix}
1045    This option may be used to tell Bacula to search DIR/include and
1046    DIR/lib for the libintl headers and libraries needed for Native
1047    Language Support (NLS).
1048
1049 \item [ {-}{\-}enable-conio]
1050    \index[general]{{-}{\-}enable-conio}
1051    Tells Bacula to enable building the small, light weight readline
1052    replacement routine.  It is generally much easier to configure than
1053    readline, although, like readline, it needs either the termcap or
1054    ncurses library.
1055
1056 \item [ {-}{\-}with-readline=\lt{}readline-path\gt{}]
1057    \index[general]{{-}{\-}with-readline}
1058    Tells Bacula where {\bf readline} is installed.  Normally, Bacula will
1059    find readline if it is in a standard library.  If it is not found and no
1060    {-}{\-}with-readline is specified, readline will be disabled.  This
1061    option affects the Bacula build.  Readline provides the Console program
1062    with a command line history and editing capability and is no longer
1063    supported, so you are on your own if you have problems.
1064
1065 \item [ {-}{\-}enable-readline]
1066    \index[general]{{-}{\-}enable-readline}
1067    Tells Bacula to enable readline support.  It is normally disabled due to the
1068    large number of configuration  problems and the fact that the package seems to
1069    change in incompatible  ways from version to version.
1070
1071 \item [ {-}{\-}with-tcp-wrappers=\lt{}path\gt{}]
1072    \index[general]{{-}{\-}with-tcp-wrappers}
1073    \index[general]{TCP Wrappers}
1074    \index[general]{Wrappers!TCP}
1075    \index[general]{libwrappers}
1076    This specifies that you  want TCP wrappers (man hosts\_access(5)) compiled in.
1077    The path is optional since  Bacula will normally find the libraries in the
1078    standard locations.  This option affects the Bacula build.  In specifying your
1079    restrictions in the {\bf /etc/hosts.allow}  or {\bf /etc/hosts.deny} files, do
1080    not use the {\bf twist}  option (hosts\_options(5)) or the Bacula process will
1081    be terminated. Note, when setting up your {\bf /etc/hosts.allow}
1082    or {\bf /etc/hosts.deny}, you must identify the Bacula daemon in
1083    question with the name you give it in your conf file rather than the
1084    name of the executable.
1085
1086    For more information on configuring and testing TCP wrappers, please  see the
1087    \ilink{Configuring and Testing TCP Wrappers}{wrappers}  section
1088    in the Security Chapter.
1089
1090    On SuSE, the libwrappers libraries needed to link Bacula are
1091    contained in the tcpd-devel package. On Red Hat, the package is named
1092    tcp\_wrappers.
1093
1094 \item [ {-}{\-}with-archivedir=\lt{}path\gt{} ]
1095    \index[general]{{-}{\-}with-archivedir}
1096    The directory used for disk-based backups.  Default value is /tmp.
1097    This parameter sets the default values in the bacula-dir.conf and bacula-sd.conf
1098    configuration files.  For example, it sets the Where directive for the
1099    default restore job and the Archive Device directive for the FileStorage
1100    device.
1101
1102    This option is designed primarily for use in regression testing.
1103    Most users can safely ignore this option.
1104
1105 \item [ {-}{\-}with-working-dir=\lt{}working-directory-path\gt{} ]
1106    \index[general]{{-}{\-}with-working-dir}
1107    This option is mandatory and specifies a directory  into which Bacula may
1108    safely place files that  will remain between Bacula executions. For example,
1109    if the internal database is used, Bacula will keep  those files in this
1110    directory.  This option is only used to modify the daemon  configuration
1111    files. You may also accomplish the same  thing by directly editing them later.
1112    The working directory  is not automatically created by the install process, so
1113    you  must ensure that it exists before using Bacula for the  first time.
1114
1115 \item [ {-}{\-}with-baseport=\lt{}port=number\gt{}]
1116    \index[general]{{-}{\-}with-baseport}
1117    In order to run,  Bacula needs three TCP/IP ports (one for the Bacula
1118    Console, one for the Storage daemon, and one for the File daemon).  The {\bf
1119    \lstinline:--:with-baseport} option will automatically assign three  ports beginning at
1120    the base port address specified. You may  also change the port number in the
1121    resulting configuration  files. However, you need to take care that the
1122    numbers  correspond correctly in each of the three daemon configuration
1123    files. The default base port is 9101, which assigns ports 9101  through 9103.
1124    These ports (9101, 9102, and 9103) have been  officially assigned to Bacula by
1125    IANA.  This option is only used  to modify the daemon configuration files. You
1126    may also accomplish  the same thing by directly editing them later.
1127
1128 \item [ {-}{\-}with-dump-email=\lt{}email-address\gt{}]
1129    \index[general]{{-}{\-}with-dump-email}
1130    This option specifies  the email address where any core dumps should be set.
1131    This option  is normally only used by developers.
1132
1133 \item [ {-}{\-}with-pid-dir=\lt{}PATH\gt{}  ]
1134    \index[general]{{-}{\-}with-pid-dir}
1135    This specifies where Bacula should place the process id  file during
1136    execution. The default is: {\bf /var/run}.  This directory is not created by
1137    the install process, so  you must ensure that it exists before using Bacula
1138    the  first time.
1139
1140 \item [ {-}{\-}with-subsys-dir=\lt{}PATH\gt{}]
1141    \index[general]{{-}{\-}with-subsys-dir}
1142    This specifies where Bacula should place the subsystem lock  file during
1143    execution. The default is {\bf /var/run/subsys}.  Please make sure that you do
1144    not specify the same directory  for this directory and for the {\bf sbindir}
1145    directory.  This directory is used only within the autostart scripts.  The
1146    subsys directory is not created by the Bacula install,  so you must be sure to
1147    create it before using Bacula.
1148
1149 \item [ {-}{\-}with-dir-password=\lt{}Password\gt{}]
1150    \index[general]{{-}{\-}with-dir-password}
1151    This option allows you to specify the password used to  access the Director
1152    (normally from the Console program).  If it is not specified, configure will
1153    automatically create a random  password.
1154
1155 \item [ {-}{\-}with-fd-password=\lt{}Password\gt{} ]
1156    \index[general]{{-}{\-}with-fd-password}
1157    This option allows you to specify the password used to  access the File daemon
1158    (normally called from the Director).  If it is not specified, configure will
1159    automatically create a random  password.
1160
1161 \item [ {-}{\-}with-sd-password=\lt{}Password\gt{} ]
1162    \index[general]{{-}{\-}with-sd-password}
1163    This option allows you to specify the password used to access the Storage daemon
1164    (normally called from the Director).  If it is not specified, configure will
1165    automatically create a random  password.
1166
1167 \item [ {-}{\-}with-dir-user=\lt{}User\gt{} ]
1168    \index[general]{{-}{\-}with-dir-user}
1169    This option allows you to specify the Userid used to run the Director.  The
1170    Director must be started as root, but doesn't need to run as root, and
1171    after doing preliminary initializations, it can "drop" to the UserId
1172    specified on this option.
1173    If you specify this option, you must
1174    create the User prior to running {\bf make install}, because the
1175    working directory owner will be set to {\bf User}.
1176
1177 \item [ {-}{\-}with-dir-group=\lt{}Group\gt{} ]
1178    \index[general]{{-}{\-}with-dir-group}
1179    This option allows you to specify the GroupId used to  run the Director. The
1180    Director must be started as root, but  doesn't need to run as root, and  after
1181    doing preliminary initializations, it can "drop"  to the GroupId specified
1182    on this option.
1183    If you specify this option, you must
1184    create the Group prior to running {\bf make install}, because the
1185    working directory group will be set to {\bf Group}.
1186
1187 \item [ {-}{\-}with-sd-user=\lt{}User\gt{} ]
1188    \index[general]{{-}{\-}with-sd-user}
1189    This option allows you to specify the Userid used to  run the Storage daemon.
1190    The Storage daemon must be started as root, but  doesn't need to run as root,
1191    and  after doing preliminary initializations, it can "drop"  to the UserId
1192    specified on this option. If you use this option,  you will need to take care
1193    that the Storage daemon has access  to all the devices (tape drives, ...) that
1194    it needs.
1195
1196 \item [ {-}{\-}with-sd-group=\lt{}Group\gt{} ]
1197    \index[general]{{-}{\-}with-sd-group}
1198    This option allows you to specify the GroupId used to  run the Storage daemon.
1199    The Storage daemon must be started as root, but  doesn't need to run as root,
1200    and  after doing preliminary initializations, it can "drop"  to the GroupId
1201    specified on this option.
1202
1203 \item [ {-}{\-}with-fd-user=\lt{}User\gt{} ]
1204    \index[general]{{-}{\-}with-fd-user}
1205    This option allows you to specify the Userid used to  run the File daemon. The
1206    File daemon must be started as root,  and in most cases, it needs to run as
1207    root, so this option is  used only in very special cases,  after doing
1208    preliminary initializations, it can "drop"  to the UserId specified on this
1209    option.
1210
1211 \item [ {-}{\-}with-fd-group=\lt{}Group\gt{} ]
1212    \index[general]{{-}{\-}with-fd-group}
1213    This option allows you to specify the GroupId used to  run the File daemon.
1214    The File daemon must be started as root, and  in most cases, it must be run as
1215    root, however,  after doing preliminary initializations, it can "drop"  to
1216    the GroupId specified on this option.
1217
1218 \item [ {-}{\-}with-mon-dir-password=\lt{}Password\gt{}]
1219    \index[general]{{-}{\-}with-mon-dir-password}
1220    This option allows you to specify the password used to  access the Directory
1221    from the monitor.  If it is not specified, configure will
1222    automatically create a random  password.
1223
1224 \item [ {-}{\-}with-mon-fd-password=\lt{}Password\gt{} ]
1225    \index[general]{{-}{\-}with-mon-fd-password}
1226    This option allows you to specify the password used to  access the File daemon
1227    from the Monitor.  If it is not specified, configure will
1228    automatically create a random  password.
1229
1230 \item [ {-}{\-}with-mon-sd-password=\lt{}Password\gt{} ]
1231    \index[general]{{-}{\-}with-mon-sd-password}
1232    This option allows you to specify the password used to  access the
1233    Storage daemon from the Monitor. If it is not specified, configure will
1234    automatically create a random  password.
1235
1236 \item [ {-}{\-}with-db-name=\lt{}database-name\gt{} ]
1237    \index[general]{{-}{\-}with-db-name}
1238    This option allows you to specify the database name to be used in
1239    the conf files.  The default is bacula.
1240
1241 \item [ {-}{\-}with-db-user=\lt{}database-user\gt{} ]
1242    \index[general]{{-}{\-}with-db-user}
1243    This option allows you to specify the database user name to be used in
1244    the conf files.  The default is bacula.
1245
1246 \end{description}
1247
1248 Note, many other options are presented when you do a {\bf ./configure
1249 \lstinline:--:help}, but they are not implemented.
1250
1251 \section{Recommended Options for Most Systems}
1252 \index[general]{Systems!Recommended Options for Most}
1253 \index[general]{Recommended Options for Most Systems}
1254
1255 For most systems, we recommend starting with the following options:
1256
1257 \footnotesize
1258 \begin{lstlisting}
1259 ./configure \
1260   --enable-smartalloc \
1261   --sbindir=$HOME/bacula/bin \
1262   --sysconfdir=$HOME/bacula/bin \
1263   --with-pid-dir=$HOME/bacula/bin/working \
1264   --with-subsys-dir=$HOME/bacula/bin/working \
1265   --with-mysql=$HOME/mysql \
1266   --with-working-dir=$HOME/bacula/working
1267 \end{lstlisting}
1268 \normalsize
1269
1270 If you want to install Bacula in an installation directory rather than run it
1271 out of the build directory (as developers will do most of the time), you
1272 should also include the \lstinline:--:sbindir and \lstinline:--:sysconfdir options with appropriate
1273 paths. Neither are necessary if you do not use "make install" as is the case
1274 for most development work. The install process will create the sbindir and
1275 sysconfdir if they do not exist, but it will not automatically create the
1276 pid-dir, subsys-dir, or working-dir, so you must ensure that they exist before
1277 running Bacula for the first time.
1278
1279 \section{Red Hat}
1280 \index[general]{Red Hat}
1281
1282 Using SQLite:
1283
1284 \footnotesize
1285 \begin{lstlisting}
1286
1287 CFLAGS="-g -Wall" ./configure \
1288   --sbindir=$HOME/bacula/bin \
1289   --sysconfdir=$HOME/bacula/bin \
1290   --enable-smartalloc \
1291   --with-sqlite=$HOME/bacula/depkgs/sqlite \
1292   --with-working-dir=$HOME/bacula/working \
1293   --with-pid-dir=$HOME/bacula/bin/working \
1294   --with-subsys-dir=$HOME/bacula/bin/working \
1295   --enable-bat \
1296   --enable-conio
1297 \end{lstlisting}
1298 \normalsize
1299
1300 or
1301
1302 \footnotesize
1303 \begin{lstlisting}
1304
1305 CFLAGS="-g -Wall" ./configure \
1306   --sbindir=$HOME/bacula/bin \
1307   --sysconfdir=$HOME/bacula/bin \
1308   --enable-smartalloc \
1309   --with-mysql=$HOME/mysql \
1310   --with-working-dir=$HOME/bacula/working
1311   --with-pid-dir=$HOME/bacula/bin/working \
1312   --with-subsys-dir=$HOME/bacula/bin/working
1313   --enable-conio
1314 \end{lstlisting}
1315 \normalsize
1316
1317 or finally, a completely traditional Red Hat Linux install:
1318
1319 \footnotesize
1320 \begin{lstlisting}
1321 CFLAGS="-g -Wall" ./configure \
1322   --sbindir=/usr/sbin \
1323   --sysconfdir=/etc/bacula \
1324   --with-scriptdir=/etc/bacula \
1325   --enable-smartalloc \
1326   --enable-bat \
1327   --with-mysql \
1328   --with-working-dir=/var/bacula \
1329   --with-pid-dir=/var/run \
1330   --enable-conio
1331 \end{lstlisting}
1332 \normalsize
1333
1334 Note, Bacula assumes that /var/bacula, /var/run, and /var/lock/subsys exist so
1335 it will not automatically create them during the install process.
1336
1337 \section{Solaris}
1338 \index[general]{Solaris}
1339
1340 To build Bacula from source, you will need the following installed on your
1341 system (they are not by default): libiconv, gcc 3.3.2, stdc++, libgcc (for
1342 stdc++ and gcc\_s libraries), make 3.8 or later.
1343
1344 You will probably also need to: Add /usr/local/bin to PATH and Add
1345 /usr/ccs/bin to PATH for ar.
1346
1347 It is possible to build Bacula on Solaris with the Solaris compiler, but
1348 we recommend using GNU C++ if possible.
1349
1350 A typical configuration command might look like:
1351
1352 \footnotesize
1353 \begin{lstlisting}
1354 #!/bin/sh
1355 CFLAGS="-g" ./configure \
1356   --sbindir=$HOME/bacula/bin \
1357   --sysconfdir=$HOME/bacula/bin \
1358   --with-mysql=$HOME/mysql \
1359   --enable-smartalloc \
1360   --with-pid-dir=$HOME/bacula/bin/working \
1361   --with-subsys-dir=$HOME/bacula/bin/working \
1362   --with-working-dir=$HOME/bacula/working
1363 \end{lstlisting}
1364 \normalsize
1365
1366 As mentioned above, the install process will create the sbindir and sysconfdir
1367 if they do not exist, but it will not automatically create the pid-dir,
1368 subsys-dir, or working-dir, so you must ensure that they exist before running
1369 Bacula for the first time.
1370
1371 Note, you may need to install the following packages to build Bacula
1372 from source:
1373 \footnotesize
1374 \begin{lstlisting}
1375 SUNWbinutils,
1376 SUNWarc,
1377 SUNWhea,
1378 SUNWGcc,
1379 SUNWGnutls
1380 SUNWGnutls-devel
1381 SUNWGmake
1382 SUNWgccruntime
1383 SUNWlibgcrypt
1384 SUNWzlib
1385 SUNWzlibs
1386 SUNWbinutilsS
1387 SUNWGmakeS
1388 SUNWlibm
1389
1390 export
1391 PATH=/usr/bin::/usr/ccs/bin:/etc:/usr/openwin/bin:/usr/local/bin:/usr/sfw/bin:/opt/sfw/bin:/usr/ucb:/usr/sbin
1392 \end{lstlisting}
1393 \normalsize
1394
1395 If you have installed special software not normally in the Solaris
1396 libraries, such as OpenSSL, or the packages shown above, then you may need
1397 to add {\bf /usr/sfw/lib} to the library search path.  Probably the
1398 simplest way to do so is to run:
1399
1400 \footnotesize
1401 \begin{lstlisting}
1402 setenv LDFLAGS "-L/usr/sfw/lib -R/usr/sfw/lib"
1403 \end{lstlisting}
1404 \normalsize
1405
1406 Prior to running the ./configure command.
1407
1408 Alternatively, you can set the LD\_LIBARY\_PATH and/or the LD\_RUN\_PATH
1409 environment variables appropriately.
1410
1411 It is also possible to use the {\bf crle} program to set the library
1412 search path.  However, this should be used with caution.
1413
1414 \section{FreeBSD}
1415 \index[general]{FreeBSD}
1416
1417 Please see:
1418 \elink{The FreeBSD Diary}{http://www.freebsddiary.org/bacula.php} for a
1419 detailed description on how to make Bacula work on your system. In addition,
1420 users of FreeBSD prior to 4.9-STABLE dated Mon Dec 29 15:18:01 2003 UTC who
1421 plan to use tape devices, please see the
1422 \bsysxrlink{Tape Testing}{FreeBSDTapes}{problems}{section} of \problemsman{} for
1423 {\bf important} information on how to configure your tape drive for
1424 compatibility with \mbacula{}.
1425
1426 If you are using Bacula with MySQL, you should take care to compile MySQL with
1427 FreeBSD native threads rather than LinuxThreads, since Bacula is normally built
1428 with FreeBSD native threads rather than LinuxTreads. Mixing the two will
1429 probably not work.
1430
1431 \section{Win32}
1432 \index[general]{Win32}
1433
1434 To install the binary Win32 version of the File daemon please see the
1435 \ilink{Win32 Installation Chapter}{Win32Chapter} in this document.
1436
1437 \section{One File Configure Script}
1438 \index[general]{Script!One File Configure}
1439 \index[general]{One Files Configure Script}
1440
1441 The following script could be used if you want to put everything
1442 in a single file:
1443
1444 \footnotesize
1445 \begin{lstlisting}
1446 #!/bin/sh
1447 CFLAGS="-g -Wall" \
1448   ./configure \
1449     --sbindir=$HOME/bacula/bin \
1450     --sysconfdir=$HOME/bacula/bin \
1451     --mandir=$HOME/bacula/bin \
1452     --enable-smartalloc \
1453     --enable-bat \
1454     --enable-bwx-console \
1455     --enable-tray-monitor \
1456     --with-pid-dir=$HOME/bacula/bin/working \
1457     --with-subsys-dir=$HOME/bacula/bin/working \
1458     --with-mysql \
1459     --with-working-dir=$HOME/bacula/bin/working \
1460     --with-dump-email=$USER@your-site.com \
1461     --with-job-email=$USER@your-site.com \
1462     --with-smtp-host=mail.your-site.com
1463 exit 0
1464 \end{lstlisting}
1465 \normalsize
1466
1467 You may also want to put the following entries in your {\bf /etc/services}
1468 file as it will make viewing the connections made by Bacula easier to
1469 recognize (i.e. netstat -a):
1470
1471 \footnotesize
1472 \begin{lstlisting}
1473 bacula-dir      9101/tcp
1474 bacula-fd       9102/tcp
1475 bacula-sd       9103/tcp
1476 \end{lstlisting}
1477 \normalsize
1478
1479 \section{Installing Bacula}
1480 \index[general]{Bacula!Installing}
1481 \index[general]{Installing Bacula}
1482
1483 Before setting up your configuration files, you will want to install Bacula in
1484 its final location. Simply enter:
1485
1486 \footnotesize
1487 \begin{lstlisting}
1488 make install
1489 \end{lstlisting}
1490 \normalsize
1491
1492 If you have previously installed Bacula, the old binaries will be overwritten,
1493 but the old configuration files will remain unchanged, and the "new"
1494 configuration files will be appended with a {\bf .new}. Generally if you have
1495 previously installed and run Bacula you will want to discard or ignore the
1496 configuration files with the appended {\bf .new}.
1497
1498 \section{Building a File Daemon or Client}
1499 \index[general]{Client!Building a File Daemon or}
1500 \index[general]{Building a File Daemon or Client}
1501
1502 If you run the Director and the Storage daemon on one machine and you wish to
1503 back up another machine, you must have a copy of the File daemon for that
1504 machine. If the machine and the Operating System are identical, you can simply
1505 copy the Bacula File daemon binary file {\bf bacula-fd} as well as its
1506 configuration file {\bf bacula-fd.conf} then modify the name and password in
1507 the conf file to be unique. Be sure to make corresponding additions to the
1508 Director's configuration file ({\bf bacula-dir.conf}).
1509
1510 If the architecture or the OS level are different, you will need to build a
1511 File daemon on the Client machine. To do so, you can use the same {\bf
1512 ./configure} command as you did for your main program, starting either from a
1513 fresh copy of the source tree, or using {\bf make\ distclean} before the {\bf
1514 ./configure}.
1515
1516 Since the File daemon does not access the Catalog database, you can remove
1517 the {\bf \lstinline:--:with-mysql} or {\bf \lstinline:--:with-sqlite} options, then
1518 add {\bf \lstinline:--:enable-client-only}.  This will compile only the
1519 necessary libraries and the client programs and thus avoids the necessity
1520 of installing one or another of those database programs to build the File
1521 daemon.  With the above option, you simply enter {\bf make} and just the
1522 client will be built.
1523
1524 \label{autostart}
1525 \section{Auto Starting the Daemons}
1526 \index[general]{Daemons!Auto Starting the}
1527 \index[general]{Auto Starting the Daemons}
1528
1529 If you wish the daemons to be automatically started and stopped when your
1530 system is booted (a good idea), one more step is necessary. First, the
1531 ./configure process must recognize your system -- that is it must be a
1532 supported platform and not {\bf unknown}, then you must install the platform
1533 dependent files by doing:
1534
1535 \footnotesize
1536 \begin{lstlisting}
1537 (become root)
1538 make install-autostart
1539 \end{lstlisting}
1540 \normalsize
1541
1542 Please note, that the auto-start feature is implemented only on systems
1543 that we officially support (currently, FreeBSD, Red Hat/Fedora Linux, and
1544 Solaris), and has only been fully tested on Fedora Linux.
1545
1546 The {\bf make install-autostart} will cause the appropriate startup scripts
1547 to be installed with the necessary symbolic links.  On Red Hat/Fedora Linux
1548 systems, these scripts reside in {\bf /etc/rc.d/init.d/bacula-dir} {\bf
1549 /etc/rc.d/init.d/bacula-fd}, and {\bf /etc/rc.d/init.d/bacula-sd}.  However
1550 the exact location depends on what operating system you are using.
1551
1552 If you only wish to install the File daemon, you may do so with:
1553
1554 \footnotesize
1555 \begin{lstlisting}
1556 make install-autostart-fd
1557 \end{lstlisting}
1558 \normalsize
1559
1560 \section{Other Make Notes}
1561 \index[general]{Notes!Other Make}
1562 \index[general]{Other Make Notes}
1563
1564 To simply build a new executable in any directory, enter:
1565
1566 \footnotesize
1567 \begin{lstlisting}
1568 make
1569 \end{lstlisting}
1570 \normalsize
1571
1572 To clean out all the objects and binaries (including the files named 1, 2, or
1573 3, which are development temporary files), enter:
1574
1575 \footnotesize
1576 \begin{lstlisting}
1577 make clean
1578 \end{lstlisting}
1579 \normalsize
1580
1581 To really clean out everything for distribution, enter:
1582
1583 \footnotesize
1584 \begin{lstlisting}
1585 make distclean
1586 \end{lstlisting}
1587 \normalsize
1588
1589 note, this cleans out the Makefiles and is normally done from the top level
1590 directory to prepare for distribution of the source. To recover from this
1591 state, you must redo the {\bf ./configure} in the top level directory, since
1592 all the Makefiles will be deleted.
1593
1594 To add a new file in a subdirectory, edit the Makefile.in in that directory,
1595 then simply do a {\bf make}. In most cases, the make will rebuild the Makefile
1596 from the new Makefile.in. In some case, you may need to issue the {\bf make} a
1597 second time. In extreme cases, cd to the top level directory and enter: {\bf
1598 make Makefiles}.
1599
1600 To add dependencies:
1601
1602 \footnotesize
1603 \begin{lstlisting}
1604 make depend
1605 \end{lstlisting}
1606 \normalsize
1607
1608 The {\bf make depend} appends the header file dependencies for each of the
1609 object files to Makefile and Makefile.in. This command should be done in each
1610 directory where you change the dependencies. Normally, it only needs to be run
1611 when you add or delete source or header files. {\bf make depend} is normally
1612 automatically invoked during the configuration process.
1613
1614 To install:
1615
1616 \footnotesize
1617 \begin{lstlisting}
1618 make install
1619 \end{lstlisting}
1620 \normalsize
1621
1622 This not normally done if you are developing Bacula, but is used if you are
1623 going to run it to backup your system.
1624
1625 After doing a {\bf make install} the following files will be installed on your
1626 system (more or less). The exact files and location (directory) for each file
1627 depends on your {\bf ./configure} command (e.g. if you are using SQLite instead
1628 of MySQL, some of the files will be different).
1629
1630 NOTE: it is quite probable that this list is out of date.  But it is a
1631 starting point.
1632
1633 \footnotesize
1634 \begin{lstlisting}
1635 bacula
1636 bacula-dir
1637 bacula-dir.conf
1638 bacula-fd
1639 bacula-fd.conf
1640 bacula-sd
1641 bacula-sd.conf
1642 bacula-tray-monitor
1643 tray-monitor.conf
1644 bextract
1645 bls
1646 bscan
1647 btape
1648 btraceback
1649 btraceback.gdb
1650 bconsole
1651 bconsole.conf
1652 create_mysql_database
1653 dbcheck
1654 delete_catalog_backup
1655 drop_bacula_tables
1656 drop_mysql_tables
1657 make_bacula_tables
1658 make_catalog_backup
1659 make_mysql_tables
1660 mtx-changer
1661 query.sql
1662 bsmtp
1663 startmysql
1664 stopmysql
1665 bwx-console
1666 bwx-console.conf
1667 9 man pages
1668 \end{lstlisting}
1669 \normalsize
1670
1671 \label{monitor}
1672
1673 \section{Installing Tray Monitor}
1674 \index[general]{Monitor!Installing Tray}
1675 \index[general]{Installing Tray Monitor}
1676
1677 The Tray Monitor is already installed if you used the {\bf
1678 \lstinline:--:enable-tray-monitor} configure option and ran {\bf make install}.
1679
1680 As you don't run your graphical environment as root (if you do, you should
1681 change that bad habit), don't forget to allow your user to read {\bf
1682 tray-monitor.conf}, and to execute {\bf bacula-tray-monitor} (this is not a
1683 security issue).
1684
1685 Then log into your graphical environment (KDE, GNOME or something else), run
1686 {\bf bacula-tray-monitor} as your user, and see if a cassette icon appears
1687 somewhere on the screen, usually on the task bar.
1688 If it doesn't, follow the instructions below related to your environment or
1689 window manager.
1690
1691 \subsection{GNOME}
1692 \index[general]{GNOME}
1693
1694 System tray, or notification area if you use the GNOME terminology, has been
1695 supported in GNOME since version 2.2. To activate it, right-click on one of
1696 your panels, open the menu {\bf Add to this Panel}, then {\bf Utility} and
1697 finally click on {\bf Notification Area}.
1698
1699 \subsection{KDE}
1700 \index[general]{KDE}
1701
1702 System tray has been supported in KDE since version 3.1. To activate it,
1703 right-click on one of your panels, open the menu {\bf Add}, then {\bf Applet}
1704 and finally click on {\bf System Tray}.
1705
1706 \subsection{Other window managers}
1707 \index[general]{Managers!Other window}
1708 \index[general]{Other window managers}
1709
1710 Read the documentation to know if the Freedesktop system tray standard is
1711 supported by your window manager, and if applicable, how to activate it.
1712
1713 \section{Modifying the Bacula Configuration Files}
1714 \index[general]{Modifying the Bacula Configuration Files}
1715 \index[general]{Files!Modifying the Bacula Configuration}
1716
1717 See the chapter
1718 \ilink{Configuring Bacula}{ConfigureChapter} in this manual for
1719 instructions on how to set Bacula configuration files.