]> git.sur5r.net Git - bacula/docs/blob - docs/manuals/en/main/postgresql.tex
ea402b54abbeef4380c59748ad65fabdb1900418
[bacula/docs] / docs / manuals / en / main / postgresql.tex
1 %%
2 %%
3
4 \chapter{Installing and Configuring PostgreSQL}
5 \label{PostgreSqlChapter}
6 \index[general]{PostgreSQL!Installing and Configuring }
7 \index[general]{Installing and Configuring PostgreSQL }
8 \index[general]{Upgrading}
9
10 If you have installed PostgreSQL from a package (.deb, .rpm, ...) or 
11 already installed it from source, please skip to the next section.
12
13 If you are building PostgreSQL from source, please be sure to add
14 the {\bf \verb:--:enable-thread-safety} option when doing the ./configure
15 for PostgreSQL.  
16
17 \section{Installing PostgreSQL}
18 \index[general]{PostgreSQL!Installing }
19
20 If you use the {\bf ./configure \verb:--:with-postgresql=PostgreSQL-Directory}
21 statement for configuring {\bf Bacula}, you will need PostgreSQL version 7.4
22 or later installed. NOTE! PostgreSQL versions earlier than 7.4 do not work
23 with Bacula. If PostgreSQL is installed in the standard system location, you
24 need only enter {\bf \verb:--:with-postgresql} since the configure program will
25 search all the standard locations. If you install PostgreSQL in your home
26 directory or some other non-standard directory, you will need to provide the
27 full path with the {\bf \verb:--:with-postgresql} option. 
28
29 Installing and configuring PostgreSQL is not difficult but can be confusing
30 the first time. If you prefer, you may want to use a package provided by your
31 chosen operating system. Binary packages are available on most PostgreSQL
32 mirrors. 
33
34 If you prefer to install from source, we recommend following the instructions
35 found in the 
36 \elink{PostgreSQL documentation}{http://www.postgresql.org/docs/}. 
37
38 If you are using FreeBSD, 
39 \elink{this FreeBSD Diary article}{http://www.freebsddiary.org/postgresql.php}
40 will be useful. Even if you are not using FreeBSD, the article will contain
41 useful configuration and setup information. 
42
43 If you configure the Batch Insert code in Bacula (attribute inserts are
44 10 times faster), you {\bf must} be using a PostgreSQL that was built with
45 the {\bf \verb:--:enable-thread-safety} option, otherwise you will get
46 data corruption. Most major Linux distros have thread safety turned on, but
47 it is better to check.  One way is to see if the PostgreSQL library that
48 Bacula will be linked against references pthreads.  This can be done
49 with a command such as:
50
51 \footnotesize
52 \begin{verbatim}
53   nm /usr/lib/libpq.a | grep pthread_mutex_lock
54 \end{verbatim}
55 \normalsize
56
57 The above command should print a line that looks like:
58
59 \footnotesize
60 \begin{verbatim}
61          U pthread_mutex_lock
62 \end{verbatim}
63 \normalsize
64
65 if does, then everything is OK. If it prints nothing, do not enable batch
66 inserts when building Bacula.
67
68 After installing PostgreSQL, you should return to completing the installation
69 of {\bf Bacula}. Later, after Bacula is installed, come back to this chapter
70 to complete the installation. Please note, the installation files used in the
71 second phase of the PostgreSQL installation are created during the Bacula
72 Installation. You must still come back to complete the second phase of the 
73 PostgreSQL installation even if you installed binaries (e.g. rpm, deb,
74 ...).
75
76
77 \label{PostgreSQL_configure}
78 \section{Configuring PostgreSQL}
79 \index[general]{PostgreSQL!Configuring PostgreSQL -- }
80
81 At this point, you should have built and installed PostgreSQL, or already have
82 a running PostgreSQL, and you should have configured, built and installed {\bf
83 Bacula}. If not, please complete these items before proceeding. 
84
85 Please note that the {\bf ./configure} used to build {\bf Bacula} will need to
86 include {\bf \verb:--:with-postgresql=PostgreSQL-directory}, where {\bf
87 PostgreSQL-directory} is the directory name that you specified on the
88 ./configure command for configuring PostgreSQL (if you didn't specify a
89 directory or PostgreSQL is installed in a default location, you do not need to
90 specify the directory). This is needed so that Bacula can find the necessary
91 include headers and library files for interfacing to PostgreSQL. 
92
93 An important thing to note here is that {\bf Bacula} makes two connections
94 to the PostgreSQL server for each backup job that is currently running.  If
95 you are intending to run a large number of concurrent jobs, check the value
96 of {\bf max\_connections} in your PostgreSQL configuration file to ensure
97 that it is larger than the setting {\bf Maximum Concurrent Jobs}
98 in your director configuration.  {\bf Setting this too low will result in
99 some backup jobs failing to run correctly!}
100
101 {\bf Bacula} will install scripts for manipulating the database (create,
102 delete, make tables etc) into the main installation directory. These files
103 will be of the form *\_bacula\_* (e.g. create\_bacula\_database). These files
104 are also available in the \lt{}bacula-src\gt{}/src/cats directory after
105 running ./configure. If you inspect create\_bacula\_database, you will see
106 that it calls create\_postgresql\_database. The *\_bacula\_* files are
107 provided for convenience. It doesn't matter what database you have chosen;
108 create\_bacula\_database will always create your database. 
109
110 Now you will create the Bacula PostgreSQL database and the tables that Bacula
111 uses. These instructions assume that you already have PostgreSQL running. You
112 will need to perform these steps as a user that is able to create new
113 databases. This can be the PostgreSQL user (on most systems, this is the pgsql
114 user). 
115
116 \begin{enumerate}
117 \item cd \lt{}install-directory\gt{}
118
119    This directory contains the Bacula catalog interface routines.  
120
121 \item Create the database owner ({\bf bacula})
122    On many systems, the PostreSQL master 
123    owner is {\bf pgsql} and on others such as Red Hat and Fedora it is {\bf
124    postgres}.  You can find out which it is by examining your /etc/passwd
125    file.  To create a new user under either your name or with say the name
126    {\bf bacula}, you can do the following:
127
128 \begin{verbatim}
129    su
130    (enter root password)
131    su pgsql (or postgres)
132    createuser bacula
133    Shall the new user be allowed to create databases? (y/n) y
134    Shall the new user be allowed to create more new users? (y/n) (choose
135          what you want)
136    exit
137 \end{verbatim}
138    Normally the {\bf bacula} user must be able to create new databases,
139    if you use the script in the next item, 
140    or you will have to create one for it, but it does not need to 
141    create new users.
142
143    In newer versions of PostgreSQL, it will not automatically ask
144    if the user {\bf bacula} should be able to create databases or
145    create new users. In that case, you may need to add one of the
146    many command line options that the program {\bf creatuser} has.
147    Please see the PostgreSQL documentation that corresponds to the
148    version you are using.
149
150 \item ./create\_bacula\_database
151
152    This script creates the PostgreSQL {\bf bacula} database.  
153    Before running this command, you should carefully think about
154    what encoding sequence you want for the text fields (paths, files, ...).
155    We strongly recommend that you use the default value of SQL\_ASCII
156    that is in the create\_bacula\_database script.  Please be warned
157    that if you change this value, your backups may fail.  After running
158    the script, you can check with the command:
159
160 \begin{verbatim}
161    psql -l
162 \end{verbatim}
163
164    and the column marked {\bf Encoding} should be {\bf SQL\_ASCII} for
165    all your Bacula databases (normally {\bf bacula}).
166
167 \item ./make\_bacula\_tables
168
169    This script creates the PostgreSQL tables used by {\bf Bacula}.  
170 \item ./grant\_bacula\_privileges
171
172    This script creates the database user {\bf bacula}  with restricted access
173 rights. You may  want to modify it to suit your situation. Please note that 
174 this database is not password protected.  
175
176 \end{enumerate}
177
178 Each of the three scripts (create\_bacula\_database, make\_bacula\_tables, and
179 grant\_bacula\_privileges) allows the addition of a command line argument.
180 This can be useful for specifying the user name. For example, you might need
181 to add {\bf -h hostname} to the command line to specify a remote database
182 server. 
183
184 To take a closer look at the access privileges that you have setup with the
185 above, you can do: 
186
187 \footnotesize
188 \begin{verbatim}
189 PostgreSQL-directory/bin/psql --command \\dp bacula
190 \end{verbatim}
191 \normalsize
192
193 Also, I had an authorization problem with the password. In the end,
194 I had to modify my {\bf pg\_hba.conf} file (in /var/lib/pgsql/data on my machine
195 in /var/lib/postgresql/8.x on others, and in /etc/postgres/8.x/main on
196 still others -- what a mess!) from:
197
198 \footnotesize
199 \begin{verbatim}
200   local   all    all        ident  sameuser
201 to
202   local   all    all        trust
203 \end{verbatim}
204 \normalsize
205
206 This solved the problem for me, but it is not always a good thing
207 to do from a security standpoint.  However, it allowed me to run
208 my regression scripts without having a password.
209
210 A more secure way to perform database authentication is with md5
211 password hashes.  Begin by editing the {\bf pg\_hba.conf} file, and
212 above the existing ``local'' and ``host'' lines, add the line:
213
214 \footnotesize
215 \begin{verbatim}
216   local bacula bacula md5
217 \end{verbatim}
218 \normalsize
219
220 then restart the Postgres database server (frequently, this can be done
221 using "/etc/init.d/postgresql restart" or "service postgresql restart") to
222 put this new authentication rule into effect.
223
224 Next, become the Postgres administrator, postgres, either by logging
225 on as the postgres user, or by using su to become root and then using
226 {\bf su - postgres} or {\bf su - pgsql} to become postgres.  
227 Add a password to the {\bf bacula} database for the {\bf bacula} user using:
228
229 \footnotesize
230 \begin{verbatim}
231   \$ psql bacula
232   bacula=# alter user bacula with password 'secret';
233   ALTER USER
234   bacula=# \\q
235 \end{verbatim}
236 \normalsize
237
238 You'll have to add this password to two locations in the
239 bacula-dir.conf file: once to the Catalog resource and once to the
240 RunBeforeJob entry in the BackupCatalog Job resource.  With the
241 password in place, these two lines should look something like:
242
243 \footnotesize
244 \begin{verbatim}
245   dbname = bacula; user = bacula; password = "secret"
246     ... and ...
247   # WARNING!!! Passing the password via the command line is insecure.
248   # see comments in make_catalog_backup for details.
249   RunBeforeJob = "/etc/make_catalog_backup bacula bacula secret"
250 \end{verbatim}
251 \normalsize
252
253 Naturally, you should choose your own significantly more random
254 password, and ensure that the bacula-dir.conf file containing this
255 password is readable only by the root.
256
257 Even with the files containing the database password properly
258 restricted, there is still a security problem with this approach: on
259 some platforms, the environment variable that is used to supply the
260 password to Postgres is available to all users of the
261 local system.  To eliminate this problem, the Postgres team have
262 deprecated the use of the environment variable password-passing
263 mechanism and recommend the use of a .pgpass file instead.  To use
264 this mechanism, create a file named .pgpass containing the single
265 line:
266
267 \footnotesize
268 \begin{verbatim}
269   localhost:5432:bacula:bacula:secret
270 \end{verbatim}
271 \normalsize
272
273 This file should be copied into the home directory of all accounts
274 that will need to gain access to the database: typically, root,
275 bacula, and any users who will make use of any of the console
276 programs.  The files must then have the owner and group set to match
277 the user (so root:root for the copy in root, and so on), and the mode
278 set to 600, limiting access to the owner of the file.
279
280 \section{Re-initializing the Catalog Database}
281 \index[general]{Database!Re-initializing the Catalog }
282 \index[general]{Re-initializing the Catalog Database }
283
284 After you have done some initial testing with {\bf Bacula}, you will probably
285 want to re-initialize the catalog database and throw away all the test Jobs
286 that you ran. To do so, you can do the following: 
287
288 \footnotesize
289 \begin{verbatim}
290   cd <install-directory>
291   ./drop_bacula_tables
292   ./make_bacula_tables
293   ./grant_bacula_privileges
294 \end{verbatim}
295 \normalsize
296
297 Please note that all information in the database will be lost and you will be
298 starting from scratch. If you have written on any Volumes, you must write an
299 end of file mark on the volume so that Bacula can reuse it. Do so with: 
300
301 \footnotesize
302 \begin{verbatim}
303    (stop Bacula or unmount the drive)
304    mt -f /dev/nst0 rewind
305    mt -f /dev/nst0 weof
306 \end{verbatim}
307 \normalsize
308
309 Where you should replace {\bf /dev/nst0} with the appropriate tape drive
310 device name for your machine. 
311
312 \section{Installing PostgreSQL from RPMs}
313 \index[general]{PostgreSQL!Installing from RPMs}
314 \index[general]{Installing PostgreSQL from RPMs}
315 If you are installing PostgreSQL from RPMs, you will need to install
316 both the PostgreSQL binaries and the client libraries.  The client
317 libraries are usually found in a {\bf devel} or {\bf dev} package, so you must
318 install the following for rpms:
319
320 \footnotesize
321 \begin{verbatim}
322   postgresql
323   postgresql-devel
324   postgresql-server
325   postgresql-libs
326 \end{verbatim}
327 \normalsize
328
329
330 and the following for debs:
331
332 \footnotesize
333 \begin{verbatim}
334   postgresql
335   postgresql-common
336   postgresql-client
337   postgresql-client-common
338   libpq5
339   libpq-dev
340 \end{verbatim}
341 \normalsize
342
343
344 These will be similar with most other package managers too.  After
345 installing from rpms, you will still need to run the scripts that set up
346 the database and create the tables as described above.
347
348
349 \section{Converting from MySQL to PostgreSQL}
350 \index[general]{PostgreSQL!Converting from MySQL to }
351 \index[general]{Converting from MySQL to PostgreSQL }
352
353 The conversion procedure presented here was worked out by Norm Dressler
354 \lt{}ndressler at dinmar dot com\gt{} 
355
356 This process was tested using the following software versions: 
357
358 \begin{itemize}
359 \item Linux Ubuntu Lucid
360 \item Mysql Ver 5.0.83
361 \item PostgreSQL 8.4.4
362 \item Bacula 5.0
363    \end{itemize}
364
365 WARNING: Always as a precaution, take a complete backup of your databases
366 before proceeding with this process! 
367
368 \begin{enumerate}
369 \item Shutdown bacula (cd /etc/bacula;./bacula stop)  
370 \item Run the following command to dump your Mysql database:  
371
372    \footnotesize
373 \begin{verbatim}
374 mysqldump -t -n -c --compatible=postgresql --skip-quote-names --skip-opt \
375           --disable-keys --lock-tables -u bacula -ppassword bacula \
376   | grep -v "INSERT INTO Status" \
377   | sed -e 's/0000-00-00 00:00:00/1970-01-01 00:00:00/g' \
378   | sed -e 's/\\0//' > bacula-backup.sql    
379 \end{verbatim}
380 \normalsize
381
382 \item Make a backup of your /etc/bacula directory (but leave the  original in
383    place).  
384 \item Go to your Bacula source directory and rebuild it to include  PostgreSQL
385    support rather then Mysql support. Check the  config.log file for your
386    original configure command and replace  enable-mysql with enable-postgresql.  
387 \item Recompile Bacula with a make and if everything compiles  completely,
388    perform a make install.  
389 \item Shutdown Mysql. 
390 \item Start PostgreSQL on your system.  
391 \item Create a bacula user in Postgres with the createuser command.  Depending on
392    your Postgres install, you may have to SU to the  user who has privileges to
393    create a user, you can also have to change permissions on catalog scripts
394    to fit your situation.  
395 \item Verify your pg\_hba.conf file contains sufficient permissions to  allow
396    bacula to access the server. Mine has the following since  it's on a secure
397    network:  
398
399 \footnotesize
400 \begin{verbatim}
401 local all all trust
402                 
403 host all all 127.0.0.1 255.255.255.255 trust
404                 
405 NOTE: you should reload (or restart) your postgres server if you  made changes
406       
407 \end{verbatim}
408 \normalsize
409
410 \item Change into the /etc/bacula directory and prepare the database  and
411    tables with the following commands:  
412
413 \footnotesize
414 \begin{verbatim}
415 ./create_postgresql_database
416                                 
417 ./make_postgresql_tables
418                                 
419 ./grant_postgresql_privileges
420        
421 \end{verbatim}
422 \normalsize
423
424 \item Verify you have access to the database:  
425
426    \footnotesize
427 \begin{verbatim}
428   
429 psql -Ubacula bacula
430       
431 \end{verbatim}
432 \normalsize
433
434 You should not get any errors.  
435 \item Load your database from the Mysql database dump with:  
436
437    \footnotesize
438 \begin{verbatim}
439 psql -Ubacula bacula <bacula-backup.dmp>
440       
441 \end{verbatim}
442 \normalsize
443
444 \item Resequence your tables with the following commands:  
445
446    \footnotesize
447 \begin{verbatim}
448 psql -Ubacula bacula
449                 
450 SELECT SETVAL('basefiles_baseid_seq', (SELECT MAX(baseid) FROM basefiles));
451 SELECT SETVAL('client_clientid_seq', (SELECT MAX(clientid) FROM client));
452 SELECT SETVAL('file_fileid_seq', (SELECT MAX(fileid) FROM file));
453 SELECT SETVAL('filename_filenameid_seq', (SELECT MAX(filenameid) FROM filename));
454 SELECT SETVAL('fileset_filesetid_seq', (SELECT MAX(filesetid) FROM fileset));
455 SELECT SETVAL('job_jobid_seq', (SELECT MAX(jobid) FROM job));
456 SELECT SETVAL('jobmedia_jobmediaid_seq', (SELECT MAX(jobmediaid) FROM jobmedia));
457 SELECT SETVAL('media_mediaid_seq', (SELECT MAX(mediaid) FROM media));
458 SELECT SETVAL('path_pathid_seq', (SELECT MAX(pathid) FROM path));
459 SELECT SETVAL('basefiles_baseid_seq', (SELECT MAX(baseid) FROM basefiles));
460 SELECT SETVAL('client_clientid_seq', (SELECT MAX(clientid) FROM client));
461 SELECT SETVAL('file_fileid_seq', (SELECT MAX(fileid) FROM file));
462 SELECT SETVAL('filename_filenameid_seq', (SELECT MAX(filenameid) FROM filename));
463 SELECT SETVAL('fileset_filesetid_seq', (SELECT MAX(filesetid) FROM fileset));
464 SELECT SETVAL('job_jobid_seq', (SELECT MAX(jobid) FROM job));
465 SELECT SETVAL('jobmedia_jobmediaid_seq', (SELECT MAX(jobmediaid) FROM jobmedia));
466 SELECT SETVAL('media_mediaid_seq', (SELECT MAX(mediaid) FROM media));
467 SELECT SETVAL('path_pathid_seq', (SELECT MAX(pathid) FROM path));
468 SELECT SETVAL('pool_poolid_seq', (SELECT MAX(poolid) FROM pool));
469
470 SELECT SETVAL('device_deviceid_seq', (SELECT MAX(deviceid) FROM device));
471 SELECT SETVAL('location_locationid_seq', (SELECT MAX(locationid) FROM location));
472 SELECT SETVAL('locationlog_loclogid_seq', (SELECT MAX(loclogid) FROM locationlog));
473 SELECT SETVAL('log_logid_seq', (SELECT MAX(logid) FROM log));
474 SELECT SETVAL('mediatype_mediatypeid_seq', (SELECT MAX(mediatypeid) FROM mediatype));
475 SELECT SETVAL('storage_storageid_seq', (SELECT MAX(storageid) FROM storage));       
476 \end{verbatim}
477 \normalsize
478
479 \item At this point, start up Bacula, verify your volume library and  perform
480    a test backup to make sure everything is working  properly. 
481 \end{enumerate}
482
483 \section{Upgrading PostgreSQL}
484 \index[general]{Upgrading PostgreSQL }
485 \index[general]{Upgrading!PostgreSQL }
486 \index[general]{Upgrading}
487 If you upgrade PostgreSQL, you must reconfigure, rebuild, and re-install 
488 Bacula otherwise you are likely to get bizarre failures.  If you
489 to modify the bacula.spec file to account for the new PostgreSQL version.
490 You can do so by rebuilding from the source rpm. To do so, you may need
491 install from rpms and you upgrade PostgreSQL, you must also rebuild Bacula.
492
493 \section{Tuning PostgreSQL}
494 \index[general]{Tuning} 
495
496 If you despool attributes for many jobs at the same time, you can tune the
497 sequence object for the \texttt{FileId} field.
498 \begin{verbatim}
499 psql -Ubacula bacula
500
501 ALTER SEQUENCE file_fileid_seq CACHE 1000;
502 \end{verbatim}
503
504 \section{Credits}
505 \index[general]{Credits }
506 Many thanks to Dan Langille for writing the PostgreSQL driver. This will
507 surely become the most popular database that Bacula supports.