source: server/databases/db.xml@ b27a739

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 8.4 9.0 9.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since b27a739 was b27a739, checked in by Bruce Dubbs <bdubbs@…>, 5 years ago

Tags

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@21158 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 14.0 KB
RevLine 
[08254fc]1<?xml version="1.0" encoding="ISO-8859-1"?>
[6732c094]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[08254fc]4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
[0aeb696]6
[ef0d8f4]7 <!ENTITY db-download-http "&sources-anduin-http;/bdb/db-&db-version;.tar.gz">
[a9e1d249]8 <!ENTITY db-download-ftp " ">
[ef0d8f4]9 <!ENTITY db-md5sum "b99454564d5b4479750567031d66fe24">
10 <!ENTITY db-size "34 MB">
11 <!ENTITY db-buildsize "265 MB">
12 <!ENTITY db-time "0.6 SBU">
[08254fc]13]>
14
[317034a]15<sect1 id="db" xreflabel="Berkeley DB-&db-version;">
[b742c85]16 <?dbhtml filename="db.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Berkeley DB-&db-version;</title>
24
25 <indexterm zone="db">
26 <primary sortas="a-Berkeley-DB">Berkeley DB</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Berkeley DB</title>
31
[1ea160c0]32 <para>
33 The <application>Berkeley DB</application> package contains programs and
34 utilities used by many other applications for database related functions.
35 </para>
[b742c85]36
[b27a739]37 &lfs84_checked;
[d8069d7]38
[b742c85]39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
[1ea160c0]42 <para>
43 Download (HTTP): <ulink url="&db-download-http;"/>
44 </para>
[b742c85]45 </listitem>
46 <listitem>
[1ea160c0]47 <para>
48 Download (FTP): <ulink url="&db-download-ftp;"/>
49 </para>
[b742c85]50 </listitem>
51 <listitem>
[1ea160c0]52 <para>
53 Download MD5 sum: &db-md5sum;
54 </para>
[b742c85]55 </listitem>
56 <listitem>
[1ea160c0]57 <para>
58 Download size: &db-size;
59 </para>
[b742c85]60 </listitem>
61 <listitem>
[1ea160c0]62 <para>
63 Estimated disk space required: &db-buildsize;
64 </para>
[b742c85]65 </listitem>
66 <listitem>
[1ea160c0]67 <para>
68 Estimated build time: &db-time;
69 </para>
[b742c85]70 </listitem>
71 </itemizedlist>
72
73 <bridgehead renderas="sect3">Berkeley DB Dependencies</bridgehead>
74
75 <bridgehead renderas="sect4">Optional</bridgehead>
[d8069d7]76 <para role="optional">
[869e6892]77 <xref linkend="tcl"/> and
[ef0d8f4]78 <xref linkend="sharutils"/> (for the <command>uudecode</command> command)
79
[869e6892]80 <!--,
[233a4949]81 <xref linkend="openjdk"/> or <xref linkend="java"/>, and
[d335260]82- - This is currently broken, removed for now. - -
[ca8bcae9]83 <xref linkend="sharutils"/> (for the <command>uudecode</command> command
[d335260]84 - Java bindings are required) -->
[d8069d7]85 </para>
[b742c85]86
[1ea160c0]87 <para condition="html" role="usernotes">
88 User Notes: <ulink url="&blfs-wiki;/db"/>
89 </para>
[b742c85]90 </sect2>
91
[a9e1d249]92 <!-- <sect2 role="testing">
[ef0d8f4]93 <title>Testing Berkeley DB before the real install</title>
[ac3ee9f8]94
[1ea160c0]95 <para>
96 If you can't wait 12 hours or so you may want to skip ahead to
97 <xref linkend="bdb-installation"/>. The test suite can take a long time
98 and has a few bugs causing a report of <quote>Regression tests
99 failed</quote>. However, running the test suite is a very exhaustive test
100 of your hardware, perhaps pushing your machine harder (especially disk
101 I/O) than it will ever see during production use. Note that you must have
102 <application>Tcl</application> installed to run the test suite.
103 </para>
104
105 <para>
106 Build for the <application>Berkeley DB</application> test by running the
107 following commands:
108 </para>
109
110<screen><userinput>cd build_unix &amp;&amp;
[a9e1d249]111../dist/configure -&#45;prefix=/usr \
112 -&#45;enable-test \
113 -&#45;enable-tcl \
114 -&#45;enable-dbm \
115 -&#45;with-tcl=/usr/lib &amp;&amp;
[2a038b2]116make</userinput></screen>
[ac3ee9f8]117
[1ea160c0]118 <para>
119 To test the results, start <command>tclsh</command>:
120 </para>
[bccbdaea]121
[8f9c757e]122<screen><userinput>tclsh</userinput></screen>
123
[1ea160c0]124 <para>
125 From the <command>tclsh</command> prompt (<prompt>%&nbsp;</prompt>), run:
126 </para>
[8f9c757e]127
[d8069d7]128<screen><userinput>source ../test/tcl/test.tcl
[8f9c757e]129run_parallel 5 run_std
130exit</userinput></screen>
[ac3ee9f8]131
[1ea160c0]132 <para>
133 Clean up the source tree with the following command:
134 </para>
[ac3ee9f8]135
[2c2f849]136<screen><userinput>make realclean &amp;&amp;
[8d288fe8]137cd ..</userinput></screen>
[2c2f849]138
[1ea160c0]139 <note><para>
140 Test127.f and Repmgr026.c are known to fail.
141 </para></note>
[d8069d7]142
[1ea160c0]143 <para>
144 There are additional testing suites in the
145 <filename class="directory">test/c</filename> and
146 <filename class="directory">test/cxx</filename> directories. See the
147 <filename>README</filename> in each directory for instructions on how to
148 run the tests.
149 </para>
[a9e1d249]150 </sect2> -->
[2c2f849]151
[2a038b2]152 <sect2 role="installation" id="bdb-installation">
[2c2f849]153 <title>Installation of Berkeley DB</title>
154
[ef0d8f4]155 <para>
156 First apply a fix so that this will compile with current versions of
157 <command>g++</command>:
158 </para>
159
160<screen><userinput>sed -i 's/\(__atomic_compare_exchange\)/\1_db/' src/dbinc/atomic.h</userinput></screen>
161
162 <!-- move parts of hte testing to here, possibly as sect3 -->
163
[1ea160c0]164 <para>
165 Install <application>Berkeley DB</application> by running the following
166 commands:
167 </para>
[2c2f849]168
[1ea160c0]169<screen><userinput>cd build_unix &amp;&amp;
170../dist/configure --prefix=/usr \
[2a038b2]171 --enable-compat185 \
[1ea160c0]172 --enable-dbm \
173 --disable-static \
[ef0d8f4]174 --enable-cxx &amp;&amp;
[2a038b2]175make</userinput></screen>
[2c2f849]176
[1ea160c0]177 <para>
178 Now, as the <systemitem class="username">root</systemitem> user:
179 </para>
[2c2f849]180
181<screen role="root"><userinput>make docdir=/usr/share/doc/db-&db-version; install &amp;&amp;
[aed3e6ec]182
[1ea160c0]183chown -v -R root:root \
184 /usr/bin/db_* \
185 /usr/include/db{,_185,_cxx}.h \
186 /usr/lib/libdb*.{so,la} \
[35a18d26]187 /usr/share/doc/db-&db-version;</userinput></screen>
[ac3ee9f8]188 </sect2>
189
[b742c85]190 <sect2 role="commands">
191 <title>Command Explanations</title>
192
[1ea160c0]193 <para>
194 <command>cd build_unix &amp;&amp; ../dist/configure
195 --prefix=/usr...</command>: This replaces the normal
196 <command>./configure</command> command, as
197 <application>Berkeley DB</application> comes with various build
198 directories for different platforms.
199 </para>
[b742c85]200
[1ea160c0]201 <para>
[b412c90f]202 <parameter>--enable-compat185</parameter>: This switch enables building
[1ea160c0]203 the DB-1.85 compatibility API.
204 </para>
[b742c85]205
[1ea160c0]206 <para>
[b412c90f]207 <parameter>--enable-cxx</parameter>: This switch enables building C++ API
[1ea160c0]208 libraries.
209 </para>
[b742c85]210
[1ea160c0]211 <para>
[b412c90f]212 <parameter>--enable-dbm</parameter>: Enables legacy interface support
[1ea160c0]213 needed by some older packages.
214 </para>
[b742c85]215
[1ea160c0]216 <para>
217 <command>make docdir=/usr/share/doc/db-&db-version; install</command>:
218 This installs the documentation in the standard location instead of
219 <filename class="directory">/usr/docs</filename>.
220 </para>
[0635d22]221
[1ea160c0]222 <para>
223 <command>chown -v -R root:root ...</command>:This command changes the
224 ownership of various installed files from the uid:gid of the builder to
225 root:root.
226 </para>
[a9e1d249]227
228 <para>
229 <option>--enable-tcl --with-tcl=/usr/lib</option>: Enables
230 <application>Tcl</application> support in DB and creates the
231 <filename class="libraryfile">libdb_tcl</filename> libraries.
232 </para>
233
234 <para>
[ca8bcae9]235 <option>--enable-java</option>: Enables <application>Java</application>
236 support in DB and creates the
[a9e1d249]237 <filename class="libraryfile">libdb_java</filename> libraries.
[ef0d8f4]238<!--
239checking if java works... yes
240checking for javac... /opt/jdk/bin/javac
241checking absolute path of javac... /opt/jdk/bin/javac
242checking java version... 10.0.1
243configure: error: Java version 1.3 or higher required, got 10.0.1
244-->
245 Support is currently broken with Java-&openjdk-build;.x.
[a9e1d249]246 </para>
[b742c85]247 </sect2>
248
249 <sect2 role="content">
250 <title>Contents</title>
251
252 <segmentedlist>
[de7f20e]253 <segtitle>Installed Programs</segtitle>
[b742c85]254 <segtitle>Installed Libraries</segtitle>
255 <segtitle>Installed Directory</segtitle>
256
257 <seglistitem>
[1ea160c0]258 <seg>
[a9e1d249]259 db_archive,
260 db_checkpoint,
261 db_deadlock,
262 db_dump,
263 db_hotbackup,
264 db_load,
265 db_log_verify,
266 db_printlog,
267 db_recover,
268 db_replicate,
269 db_stat,
270 db_tuner,
[f12d348]271 db_upgrade, and
[233a4949]272 db_verify
[1ea160c0]273 </seg>
274 <seg>
[491df213]275 libdb.so,
[ef0d8f4]276 libdb_cxx.so, and
277<!-- libdb_java.so, and -->
[491df213]278 libdb_tcl.so
[1ea160c0]279 </seg>
[b742c85]280 <seg>/usr/share/doc/db-&db-version;</seg>
281 </seglistitem>
282 </segmentedlist>
283
284 <variablelist>
285 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
286 <?dbfo list-presentation="list"?>
287 <?dbhtml list-presentation="table"?>
288
289 <varlistentry id="db_archive">
290 <term><command>db_archive</command></term>
291 <listitem>
[1ea160c0]292 <para>
293 prints the pathnames of log files that are no longer in use.
294 </para>
[b742c85]295 <indexterm zone="db db_archive">
296 <primary sortas="b-db_archive">db_archive</primary>
297 </indexterm>
298 </listitem>
299 </varlistentry>
300
301 <varlistentry id="db_checkpoint">
302 <term><command>db_checkpoint</command></term>
303 <listitem>
[1ea160c0]304 <para>
305 is a daemon process used to monitor and checkpoint database logs.
306 </para>
[b742c85]307 <indexterm zone="db db_checkpoint">
308 <primary sortas="b-db_checkpoint">db_checkpoint</primary>
309 </indexterm>
310 </listitem>
311 </varlistentry>
312
313 <varlistentry id="db_deadlock">
314 <term><command>db_deadlock</command></term>
315 <listitem>
[1ea160c0]316 <para>
317 is used to abort lock requests when deadlocks are detected.
318 </para>
[b742c85]319 <indexterm zone="db db_deadlock">
320 <primary sortas="b-db_deadlock">db_deadlock</primary>
321 </indexterm>
322 </listitem>
323 </varlistentry>
324
325 <varlistentry id="db_dump">
326 <term><command>db_dump</command></term>
327 <listitem>
[1ea160c0]328 <para>
329 converts database files to a flat file format readable by
330 <command>db_load</command>.
331 </para>
[b742c85]332 <indexterm zone="db db_dump">
333 <primary sortas="b-db_dump">db_dump</primary>
334 </indexterm>
335 </listitem>
336 </varlistentry>
337
[1ea160c0]338 <varlistentry id="db_hotbackup">
339 <term><command>db_hotbackup</command></term>
340 <listitem>
341 <para>
342 creates "hot backup" or "hot failover" snapshots of Berkeley DB
343 databases.
344 </para>
345 <indexterm zone="db db_hotbackup">
346 <primary sortas="b-db_hotbackup">db_hotbackup</primary>
347 </indexterm>
348 </listitem>
349 </varlistentry>
350
[b742c85]351 <varlistentry id="db_load">
352 <term><command>db_load</command></term>
353 <listitem>
[1ea160c0]354 <para>
355 is used to create database files from flat files created with
356 <command>db_dump</command>.
357 </para>
[b742c85]358 <indexterm zone="db db_load">
359 <primary sortas="b-db_load">db_load</primary>
360 </indexterm>
361 </listitem>
362 </varlistentry>
363
[1ea160c0]364 <varlistentry id="db_log_verify">
365 <term><command>db_log_verify</command></term>
366 <listitem>
367 <para>verifies the log files of a database.</para>
368 <indexterm zone="db db_log_verify">
369 <primary sortas="b-db_log_verify">db_log_verify</primary>
370 </indexterm>
371 </listitem>
372 </varlistentry>
373
[b742c85]374 <varlistentry id="db_printlog">
375 <term><command>db_printlog</command></term>
376 <listitem>
377 <para>converts database log files to human readable text.</para>
378 <indexterm zone="db db_printlog">
379 <primary sortas="b-db_printlog">db_printlog</primary>
380 </indexterm>
381 </listitem>
382 </varlistentry>
383
384 <varlistentry id="db_recover">
385 <term><command>db_recover</command></term>
386 <listitem>
[1ea160c0]387 <para>
388 is used to restore a database to a consistent state after a failure.
389 </para>
[b742c85]390 <indexterm zone="db db_recover">
391 <primary sortas="b-db_recover">db_recover</primary>
392 </indexterm>
393 </listitem>
394 </varlistentry>
395
[1ea160c0]396 <varlistentry id="db_replicate">
397 <term><command>db_replicate</command></term>
398 <listitem>
399 <para>
400 is a daemon process that provides replication/HA services on a
401 transactional environment.
402 </para>
403 <indexterm zone="db db_replicate">
404 <primary sortas="b-db_replicate">db_replicate</primary>
405 </indexterm>
406 </listitem>
407 </varlistentry>
408
[b742c85]409 <varlistentry id="db_stat">
410 <term><command>db_stat</command></term>
411 <listitem>
412 <para>displays database environment statistics.</para>
413 <indexterm zone="db db_stat">
414 <primary sortas="b-db_stat">db_stat</primary>
415 </indexterm>
416 </listitem>
417 </varlistentry>
418
[1ea160c0]419 <varlistentry id="db_tuner">
420 <term><command>db_tuner</command></term>
421 <listitem>
422 <para>
423 analyzes the data in a btree database, and suggests a page size that
424 is likely to deliver optimal operation.
425 </para>
426 <indexterm zone="db db_tuner">
427 <primary sortas="b-db_tuner">db_tuner</primary>
428 </indexterm>
429 </listitem>
430 </varlistentry>
431
[b742c85]432 <varlistentry id="db_upgrade">
433 <term><command>db_upgrade</command></term>
434 <listitem>
[1ea160c0]435 <para>
436 is used to upgrade database files to a newer version of
437 <application>Berkeley DB</application>.
438 </para>
[b742c85]439 <indexterm zone="db db_upgrade">
440 <primary sortas="b-db_upgrade">db_upgrade</primary>
441 </indexterm>
442 </listitem>
443 </varlistentry>
444
445 <varlistentry id="db_verify">
446 <term><command>db_verify</command></term>
447 <listitem>
448 <para>is used to run consistency checks on database files.</para>
449 <indexterm zone="db db_verify">
450 <primary sortas="b-db_verify">db_verify</primary>
451 </indexterm>
452 </listitem>
453 </varlistentry>
454 </variablelist>
455 </sect2>
[f45b1953]456</sect1>
Note: See TracBrowser for help on using the repository browser.