]> git.sur5r.net Git - bacula/docs/blob - docs/manual/postgresql.tex
Final changes
[bacula/docs] / docs / manual / postgresql.tex
1 %%
2 %%
3
4 \section*{Installing and Configuring PostgreSQL}
5 \label{_ChapterStart10}
6 \index[general]{PostgreSQL!Installing and Configuring }
7 \index[general]{Installing and Configuring PostgreSQL }
8 \addcontentsline{toc}{section}{Installing and Configuring PostgreSQL}
9
10 \subsection*{Installing and Configuring PostgreSQL -- Phase I}
11 \index[general]{Installing and Configuring PostgreSQL -- Phase I }
12 \index[general]{Phase I!Installing and Configuring PostgreSQL -- }
13 \addcontentsline{toc}{subsection}{Installing and Configuring PostgreSQL --
14 Phase I}
15
16 If you use the {\bf ./configure \verb:--:with-postgresql=PostgreSQL-Directory}
17 statement for configuring {\bf Bacula}, you will need PostgreSQL version 7.3
18 or later installed. NOTE! PostgreSQL versions earlier than 7.3 do not work
19 with Bacula. If PostgreSQL is installed in the standard system location, you
20 need only enter {\bf \verb:--:with-postgresql} since the configure program will
21 search all the standard locations. If you install PostgreSQL in your home
22 directory or some other non-standard directory, you will need to provide the
23 full path with the {\bf \verb:--:with-postgresql} option. 
24
25 Installing and configuring PostgreSQL is not difficult but can be confusing
26 the first time. If you prefer, you may want to use a package provided by your
27 chosen operating system. Binary packages are available on most PostgreSQL
28 mirrors. 
29
30 If you prefer to install from source, we recommend following the instructions
31 found in the 
32 \elink{PostgreSQL documentation}{http://www.postgresql.org/docs/}. 
33
34 If you are using FreeBSD, 
35 \elink{this FreeBSD Diary article}{http://www.freebsddiary.org/postgresql.php}
36 will be useful. Even if you are not using FreeBSD, the article will contain
37 useful configuration and setup information. 
38
39 After installing PostgreSQL, you should return to completing the installation
40 of {\bf Bacula}. Later, after Bacula is installed, come back to this chapter
41 to complete the installation. Please note, the installation files used in the
42 second phase of the PostgreSQL installation are created during the Bacula
43 Installation. 
44 \label{PostgreSQL_phase2}
45
46 \subsection*{Installing and Configuring PostgreSQL -- Phase II}
47 \index[general]{Phase II!Installing and Configuring PostgreSQL -- }
48 \index[general]{Installing and Configuring PostgreSQL -- Phase II }
49 \addcontentsline{toc}{subsection}{Installing and Configuring PostgreSQL --
50 Phase II}
51
52 At this point, you should have built and installed PostgreSQL, or already have
53 a running PostgreSQL, and you should have configured, built and installed {\bf
54 Bacula}. If not, please complete these items before proceeding. 
55
56 Please note that the {\bf ./configure} used to build {\bf Bacula} will need to
57 include {\bf \verb:--:with-postgresql=PostgreSQL-directory}, where {\bf
58 PostgreSQL-directory} is the directory name that you specified on the
59 ./configure command for configuring PostgreSQL (if you didn't specify a
60 directory or PostgreSQL is installed in a default location, you do not need to
61 specify the directory). This is needed so that Bacula can find the necessary
62 include headers and library files for interfacing to PostgreSQL. 
63
64 {\bf Bacula} will install scripts for manipulating the database (create,
65 delete, make tables etc) into the main installation directory. These files
66 will be of the form *\_bacula\_* (e.g. create\_bacula\_database). These files
67 are also available in the \lt{}bacula-src\gt{}/src/cats directory after
68 running ./configure. If you inspect create\_bacula\_database, you will see
69 that it calls create\_postgresql\_database. The *\_bacula\_* files are
70 provided for convenience. It doesn't matter what database you have chosen;
71 create\_bacula\_database will always create your database. 
72
73 Now you will create the Bacula PostgreSQL database and the tables that Bacula
74 uses. These instructions assume that you already have PostgreSQL running. You
75 will need to perform these steps as a user that is able to create new
76 databases. This can be the PostgreSQL user (on most systems, this is the pgsql
77 user). 
78
79 \begin{enumerate}
80 \item cd \lt{}install-directory\gt{}
81
82    This directory contains the Bacula catalog  interface routines.  
83
84 \item ./create\_bacula\_database
85
86    This script creates the PostgreSQL {\bf bacula} database.  
87    If it fails, it is probably because the database is owned by a
88    user other than yourself. On many systems, the database owner is
89    {\bf pgsql} and on others such as RedHat and Fedora it is {\bf postgre}.
90    You can find out which it is by examining your /etc/passwd file.
91    To create a new user under either your name or with say the name
92    {\bf bacula}, you can do the following:
93
94 \begin{verbatim}
95    su
96    (enter root password)
97    password pgsql (or postgre)
98    (enter a password for this account)
99    exit
100    su pgsql (or postgre)
101    (enter password just created)
102    createuser kern (or perhaps bacula)
103    Shall the new user be allowed to create databases? (y/n) y
104    Shall the new user be allowed to create more new users? (y/n) (choose
105          what you want)
106    exit
107 \end{verbatim}
108     
109     At this point, you should be able to execute the
110     ./create\_bacula\_database command.
111
112 \item ./make\_bacula\_tables
113
114    This script creates the PostgreSQL tables used by {\bf Bacula}.  
115 \item ./grant\_bacula\_privileges
116
117    This script creates the database user {\bf bacula}  with restricted access
118 rights. You may  want to modify it to suit your situation. Please note that 
119 this database is not password protected.  
120
121 \end{enumerate}
122
123 Each of the three scripts (create\_bacula\_database, make\_bacula\_tables, and
124 grant\_bacula\_privileges) allows the addition of a command line argument.
125 This can be useful for specifying the user name. For example, you might need
126 to add {\bf -h hostname} to the command line to specify a remote database
127 server. 
128
129 To take a closer look at the access privileges that you have setup with the
130 above, you can do: 
131
132 \footnotesize
133 \begin{verbatim}
134 PostgreSQL-directory/bin/psql --command \\dp bacula
135 \end{verbatim}
136 \normalsize
137
138 \subsection*{Re-initializing the Catalog Database}
139 \index[general]{Database!Re-initializing the Catalog }
140 \index[general]{Re-initializing the Catalog Database }
141 \addcontentsline{toc}{subsection}{Re-initializing the Catalog Database}
142
143 After you have done some initial testing with {\bf Bacula}, you will probably
144 want to re-initialize the catalog database and throw away all the test Jobs
145 that you ran. To do so, you can do the following: 
146
147 \footnotesize
148 \begin{verbatim}
149   cd <install-directory>
150   ./drop_bacula_tables
151   ./make_bacula_tables
152   ./grant_bacula_privileges
153 \end{verbatim}
154 \normalsize
155
156 Please note that all information in the database will be lost and you will be
157 starting from scratch. If you have written on any Volumes, you must write an
158 end of file mark on the volume so that Bacula can reuse it. Do so with: 
159
160 \footnotesize
161 \begin{verbatim}
162    (stop Bacula or unmount the drive)
163    mt -f /dev/nst0 rewind
164    mt -f /dev/nst0 weof
165 \end{verbatim}
166 \normalsize
167
168 Where you should replace {\bf /dev/nst0} with the appropriate tape drive
169 device name for your machine. 
170
171 \subsection*{Converting from MySQL to PostgreSQL}
172 \index[general]{PostgreSQL!Converting from MySQL to }
173 \index[general]{Converting from MySQL to PostgreSQL }
174 \addcontentsline{toc}{subsection}{Converting from MySQL to PostgreSQL}
175
176 The conversion procedure presented here was worked out by Norm Dressler
177 \lt{}ndressler at dinmar dot com\gt{} 
178
179 This process was tested using the following software versions: 
180
181 \begin{itemize}
182 \item Linux Mandrake 10/Kernel 2.4.22-10 SMP 
183 \item Mysql Ver 12.21 Distrib 4.0.15, for mandrake-linux-gnu (i586) 
184 \item PostgreSQL 7.3.4 
185 \item Bacula 1.34.5 
186    \end{itemize}
187
188 WARNING: Always as a precaution, take a complete backup of your databases
189 before proceeding with this process! 
190
191 \begin{enumerate}
192 \item Shutdown bacula (cd /etc/bacula;./bacula stop)  
193 \item Run the following command to dump your Mysql database:  
194
195    \footnotesize
196 \begin{verbatim}
197        mysqldump -f -t -n >bacula-backup.dmp>
198     
199 \end{verbatim}
200 \normalsize
201
202 \item Make a backup of your /etc/bacula directory (but leave the  original in
203    place).  
204 \item Go to your Bacula source directory and rebuild it to include  PostgreSQL
205    support rather then Mysql support. Check the  config.log file for your
206    original configure command and replace  enable-mysql with enable-postgresql.  
207 \item Recompile Bacula with a make and if everything compiles  completely,
208    perform a make install.  
209 \item Shutdown Mysql. 
210 \item Start PostgreSQL on your system.  
211 \item Create a bacula user in Postgres with the createuser command.  Depending on
212    your Postgres install, you may have to SU to the  user who has privileges to
213    create a user.  
214 \item Verify your pg\_hba.conf file contains sufficient permissions to  allow
215    bacula to access the server. Mine has the following since  it's on a secure
216    network:  
217
218 \footnotesize
219 \begin{verbatim}
220 local all all trust
221                 
222 host all all 127.0.0.1 255.255.255.255 trust
223                 
224 NOTE: you should restart your postgres server if you
225       made changes
226       
227 \end{verbatim}
228 \normalsize
229
230 \item Change into the /etc/bacula directory and prepare the database  and
231    tables with the following commands:  
232
233 \footnotesize
234 \begin{verbatim}
235 ./create_postgresql_database
236                                 
237 ./make_postgresql_tables
238                                 
239 ./grant_postgresql_privileges
240        
241 \end{verbatim}
242 \normalsize
243
244 \item Verify you have access to the database:  
245
246    \footnotesize
247 \begin{verbatim}
248   
249 psql -Ubacula bacula
250       
251 \end{verbatim}
252 \normalsize
253
254 You should not get any errors.  
255 \item Load your database from the Mysql database dump with:  
256
257    \footnotesize
258 \begin{verbatim}
259 psql -Ubacula bacula <bacula-backup.dmp>
260       
261 \end{verbatim}
262 \normalsize
263
264 \item Reseqence your tables with the following commands:  
265
266    \footnotesize
267 \begin{verbatim}
268 psql -Ubacula bacula
269                 
270 SELECT SETVAL('basefiles_baseid_seq', (SELECT
271 MAX(baseid) FROM basefiles));
272 SELECT SETVAL('client_clientid_seq', (SELECT
273 MAX(clientid) FROM client));
274 SELECT SETVAL('file_fileid_seq', (SELECT MAX(fileid)
275 FROM file));
276 SELECT SETVAL('filename_filenameid_seq', (SELECT
277 MAX(filenameid) FROM filename));
278                 
279 SELECT SETVAL('fileset_filesetid_seq', (SELECT
280 MAX(filesetid) FROM fileset));
281                 
282 SELECT SETVAL('job_jobid_seq', (SELECT MAX(jobid) FROM job));
283 SELECT SETVAL('jobmedia_jobmediaid_seq', (SELECT
284 MAX(jobmediaid) FROM jobmedia));
285 SELECT SETVAL('media_mediaid_seq', (SELECT MAX(mediaid) FROM media));
286 SELECT SETVAL('path_pathid_seq', (SELECT MAX(pathid) FROM path));
287                 
288 SELECT SETVAL('pool_poolid_seq', (SELECT MAX(poolid) FROM pool));
289        
290 \end{verbatim}
291 \normalsize
292
293 \item At this point, start up Bacula, verify your volume library and  perform
294    a test backup to make sure everything is working  properly. 
295 \end{enumerate}
296
297 \subsection*{Upgrading PostgreSQL}
298 \index[general]{Upgrading PostgreSQL }
299 \index[general]{Upgrading!PostgreSQL }
300 \addcontentsline{toc}{subsection}{Upgrading PostgreSQL}
301 If you upgrade PostgreSQL, you must reconfigure, rebuild, and re-install 
302 Bacula otherwise you are likely to get bizarre failures.  If you
303 to modify the bacula.spec file to account for the new PostgreSQL version.
304 You can do so by rebuilding from the source rpm. To do so, you may need
305 install from rpms and you upgrade PostgreSQL, you must also rebuild Bacula.
306
307
308 \subsection*{Credits}
309 \index[general]{Credits }
310 \addcontentsline{toc}{subsection}{Credits}
311 Many thanks to Dan Langille for writing the PostgreSQL driver. This will
312 surely become the most popular database that Bacula supports.