Changeset 9aeb405d
- Timestamp:
- 10/23/2004 05:51:06 AM (19 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/python-mods, qt5new, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 7cc2827
- Parents:
- dca2fac3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
content/databases/postgresql.xml
rdca2fac3 r9aeb405d 7 7 <!ENTITY postgresql-download-http "http://gd.tuwien.ac.at/db/postgresql/v&postgresql-version;/postgresql-&postgresql-version;.tar.bz2"> 8 8 <!ENTITY postgresql-download-ftp "ftp://ftp.fr.postgresql.org/v&postgresql-version;/postgresql-&postgresql-version;.tar.bz2"> 9 <!ENTITY postgresql-size "9.7 MB"> 10 <!ENTITY postgresql-buildsize "197 MB"> 9 <!ENTITY postgresql-md5sum "f0ea2b372a7bdaf2613e92176ebf5e0f"> 10 <!ENTITY postgresql-size "10.2 MB"> 11 <!ENTITY postgresql-buildsize "236 MB"> 11 12 <!ENTITY postgresql-time "1.21 SBU"> 12 13 ]> … … 32 33 <listitem><para>Download (HTTP): <ulink url="&postgresql-download-http;"/></para></listitem> 33 34 <listitem><para>Download (FTP): <ulink url="&postgresql-download-ftp;"/></para></listitem> 35 <listitem><para>MD5 sum: &postgresql-md5sum;</para></listitem> 34 36 <listitem><para>Download size: &postgresql-size;</para></listitem> 35 <listitem><para>Estimated Disk space required: &postgresql-buildsize;</para></listitem>37 <listitem><para>Estimated disk space required: &postgresql-buildsize;</para></listitem> 36 38 <listitem><para>Estimated build time: &postgresql-time;</para></listitem></itemizedlist> 39 </sect3> 40 41 <sect3><title>Additional downloads</title> 42 <itemizedlist spacing='compact'> 43 <listitem><para>Required patch: <ulink 44 url="&patch-root;/postgresql-&postgresql-version;-dsssl_fix-1.patch"/></para> 45 </listitem></itemizedlist> 37 46 </sect3> 38 47 … … 46 55 <xref linkend="openssl"/>, 47 56 <xref linkend="Linux_PAM"/>, 48 <xref linkend="opensp"/>, 57 <xref linkend="sgml-dtd-3"/>, 58 <xref linkend="docbook-dsssl"/>, 49 59 <xref linkend="openjade"/>, 50 60 <xref linkend="perl-modules"/>: SGMLSpm-&SGMLSpm-version;, … … 62 72 </title> 63 73 74 <para>In order for <command>configure</command> to properly discover 75 <application>Docbook <acronym>SGML</acronym> 76 <acronym>DTD</acronym></application> (v3.1), you may need to remove 77 <application>OpenSP</application> catalog definitions from the system 78 <acronym>SGML</acronym> catalogs. Use the following command before building 79 the package to accomplish this:</para> 80 81 <screen><userinput><command>sed -i.orig \ 82 -e "/CATALOG \/etc\/sgml\/OpenSP-1.5.1.cat/d" \ 83 /etc/sgml/catalog \ 84 /etc/sgml/sgml-docbook.cat</command></userinput></screen> 85 64 86 <para>Install <application>Postgre<acronym>SQL</acronym></application> with the 65 87 following commands: </para> 66 88 67 <screen><userinput><command>./configure --prefix=/usr && 89 <screen><userinput><command>patch -Np1 -i ../postgresql-&postgresql-version;-dsssl_fix-1.patch && 90 ./configure --prefix=/usr --enable-thread-safety && 68 91 make && 69 92 make install && … … 115 138 <title>Command explanations</title> 116 139 140 <para><parameter>--enable-thread-safety</parameter>: This switch makes the 141 client libraries thread-safe by allowing concurrent threads in 142 <filename class='libraryfile'>libpq</filename> and <acronym>ECPG</acronym> 143 programs to safely control their private connection handles.</para> 144 117 145 <para><command>chown -R root:root /usr/share/doc/postgresql/html</command>: 118 146 This command corrects the improper ownership of some documentation 119 147 files.</para> 120 148 121 <para><command>useradd -d /srv/pgsql/data postgres</command>: Add an unprivileged user to run the database server.</para> 149 <para><command>useradd -d /srv/pgsql/data postgres</command>: Add an 150 unprivileged user to run the database server.</para> 122 151 123 152 <para><command>createdb test, create table t1 , insert into t1 values..., -
general.ent
rdca2fac3 r9aeb405d 1 <!ENTITY day "2 1">1 <!ENTITY day "23"> 2 2 <!ENTITY month "10"> 3 3 <!ENTITY year "2004"> 4 4 <!ENTITY version "svn-&year;&month;&day;"> 5 <!ENTITY releasedate "October &day; st, &year;">5 <!ENTITY releasedate "October &day;rd, &year;"> 6 6 <!ENTITY pubdate "&year;-&month;-&day;"> <!-- metadata req. by TLDP --> 7 7 <!ENTITY blfs-version "cvs"> <!-- cvs|[release #] --> … … 220 220 <!ENTITY db-3.3-version "3.3.11"> 221 221 <!ENTITY mysql-version "4.0.21"> 222 <!ENTITY postgresql-version "7.4. 3">222 <!ENTITY postgresql-version "7.4.6"> 223 223 224 224 <!-- Chapter 24 --> -
introduction/welcome/changelog.xml
rdca2fac3 r9aeb405d 22 22 23 23 <itemizedlist> 24 25 <listitem><para>October 23rd, 2004 [randy]: Updated to 26 PostgreSQL-7.4.6.</para></listitem> 24 27 25 28 <listitem><para>October 21st, 2004 [randy]: Updated to
Note:
See TracChangeset
for help on using the changeset viewer.