]> git.sur5r.net Git - bacula/docs/blob - docs/manual-de/postgresql.tex
Updates
[bacula/docs] / docs / manual-de / 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 Also, I had an authorization problem with the password. In the end,
139 I had to modify my {\bf pg_hba.conf} file (in /var/lib/pgsql on my machine)
140 from:
141
142 \footnotesize
143 \begin{verbatim}
144   local   all    all        ident
145 to
146   local   all    all        trust
147 \end{verbatim}
148 \normalsize
149
150 This solved the problem for me, but it is not always a good thing
151 to do from a security standpoint.  However, it allowed me to run
152 my regression scripts without having a password.
153
154
155 \subsection*{Re-initializing the Catalog Database}
156 \index[general]{Database!Re-initializing the Catalog }
157 \index[general]{Re-initializing the Catalog Database }
158 \addcontentsline{toc}{subsection}{Re-initializing the Catalog Database}
159
160 After you have done some initial testing with {\bf Bacula}, you will probably
161 want to re-initialize the catalog database and throw away all the test Jobs
162 that you ran. To do so, you can do the following: 
163
164 \footnotesize
165 \begin{verbatim}
166   cd <install-directory>
167   ./drop_bacula_tables
168   ./make_bacula_tables
169   ./grant_bacula_privileges
170 \end{verbatim}
171 \normalsize
172
173 Please note that all information in the database will be lost and you will be
174 starting from scratch. If you have written on any Volumes, you must write an
175 end of file mark on the volume so that Bacula can reuse it. Do so with: 
176
177 \footnotesize
178 \begin{verbatim}
179    (stop Bacula or unmount the drive)
180    mt -f /dev/nst0 rewind
181    mt -f /dev/nst0 weof
182 \end{verbatim}
183 \normalsize
184
185 Where you should replace {\bf /dev/nst0} with the appropriate tape drive
186 device name for your machine. 
187
188 \subsection*{Converting from MySQL to PostgreSQL}
189 \index[general]{PostgreSQL!Converting from MySQL to }
190 \index[general]{Converting from MySQL to PostgreSQL }
191 \addcontentsline{toc}{subsection}{Converting from MySQL to PostgreSQL}
192
193 The conversion procedure presented here was worked out by Norm Dressler
194 \lt{}ndressler at dinmar dot com\gt{} 
195
196 This process was tested using the following software versions: 
197
198 \begin{itemize}
199 \item Linux Mandrake 10/Kernel 2.4.22-10 SMP 
200 \item Mysql Ver 12.21 Distrib 4.0.15, for mandrake-linux-gnu (i586) 
201 \item PostgreSQL 7.3.4 
202 \item Bacula 1.34.5 
203    \end{itemize}
204
205 WARNING: Always as a precaution, take a complete backup of your databases
206 before proceeding with this process! 
207
208 \begin{enumerate}
209 \item Shutdown bacula (cd /etc/bacula;./bacula stop)  
210 \item Run the following command to dump your Mysql database:  
211
212    \footnotesize
213 \begin{verbatim}
214        mysqldump -f -t -n >bacula-backup.dmp>
215     
216 \end{verbatim}
217 \normalsize
218
219 \item Make a backup of your /etc/bacula directory (but leave the  original in
220    place).  
221 \item Go to your Bacula source directory and rebuild it to include  PostgreSQL
222    support rather then Mysql support. Check the  config.log file for your
223    original configure command and replace  enable-mysql with enable-postgresql.  
224 \item Recompile Bacula with a make and if everything compiles  completely,
225    perform a make install.  
226 \item Shutdown Mysql. 
227 \item Start PostgreSQL on your system.  
228 \item Create a bacula user in Postgres with the createuser command.  Depending on
229    your Postgres install, you may have to SU to the  user who has privileges to
230    create a user.  
231 \item Verify your pg\_hba.conf file contains sufficient permissions to  allow
232    bacula to access the server. Mine has the following since  it's on a secure
233    network:  
234
235 \footnotesize
236 \begin{verbatim}
237 local all all trust
238                 
239 host all all 127.0.0.1 255.255.255.255 trust
240                 
241 NOTE: you should restart your postgres server if you
242       made changes
243       
244 \end{verbatim}
245 \normalsize
246
247 \item Change into the /etc/bacula directory and prepare the database  and
248    tables with the following commands:  
249
250 \footnotesize
251 \begin{verbatim}
252 ./create_postgresql_database
253                                 
254 ./make_postgresql_tables
255                                 
256 ./grant_postgresql_privileges
257        
258 \end{verbatim}
259 \normalsize
260
261 \item Verify you have access to the database:  
262
263    \footnotesize
264 \begin{verbatim}
265   
266 psql -Ubacula bacula
267       
268 \end{verbatim}
269 \normalsize
270
271 You should not get any errors.  
272 \item Load your database from the Mysql database dump with:  
273
274    \footnotesize
275 \begin{verbatim}
276 psql -Ubacula bacula <bacula-backup.dmp>
277       
278 \end{verbatim}
279 \normalsize
280
281 \item Reseqence your tables with the following commands:  
282
283    \footnotesize
284 \begin{verbatim}
285 psql -Ubacula bacula
286                 
287 SELECT SETVAL('basefiles_baseid_seq', (SELECT
288 MAX(baseid) FROM basefiles));
289 SELECT SETVAL('client_clientid_seq', (SELECT
290 MAX(clientid) FROM client));
291 SELECT SETVAL('file_fileid_seq', (SELECT MAX(fileid)
292 FROM file));
293 SELECT SETVAL('filename_filenameid_seq', (SELECT
294 MAX(filenameid) FROM filename));
295                 
296 SELECT SETVAL('fileset_filesetid_seq', (SELECT
297 MAX(filesetid) FROM fileset));
298                 
299 SELECT SETVAL('job_jobid_seq', (SELECT MAX(jobid) FROM job));
300 SELECT SETVAL('jobmedia_jobmediaid_seq', (SELECT
301 MAX(jobmediaid) FROM jobmedia));
302 SELECT SETVAL('media_mediaid_seq', (SELECT MAX(mediaid) FROM media));
303 SELECT SETVAL('path_pathid_seq', (SELECT MAX(pathid) FROM path));
304                 
305 SELECT SETVAL('pool_poolid_seq', (SELECT MAX(poolid) FROM pool));
306        
307 \end{verbatim}
308 \normalsize
309
310 \item At this point, start up Bacula, verify your volume library and  perform
311    a test backup to make sure everything is working  properly. 
312 \end{enumerate}
313
314 \subsection*{Upgrading PostgreSQL}
315 \index[general]{Upgrading PostgreSQL }
316 \index[general]{Upgrading!PostgreSQL }
317 \addcontentsline{toc}{subsection}{Upgrading PostgreSQL}
318 If you upgrade PostgreSQL, you must reconfigure, rebuild, and re-install 
319 Bacula otherwise you are likely to get bizarre failures.  If you
320 to modify the bacula.spec file to account for the new PostgreSQL version.
321 You can do so by rebuilding from the source rpm. To do so, you may need
322 install from rpms and you upgrade PostgreSQL, you must also rebuild Bacula.
323
324
325 \subsection*{Credits}
326 \index[general]{Credits }
327 \addcontentsline{toc}{subsection}{Credits}
328 Many thanks to Dan Langille for writing the PostgreSQL driver. This will
329 surely become the most popular database that Bacula supports.