Ignore:
Timestamp:
05/12/2013 04:46:18 PM (11 years ago)
Author:
Krejzi <krejzi@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
4af4be4
Parents:
44b8f10
Message:

Package updates and fixes. kdepim patch unnecesary with 4.10.3. Fix alsa-lib issues when building libkcompactdisc.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/databases/postgresql.xml

    r44b8f10 rfaf325d  
    9494    following commands: </para>
    9595
    96 <screen><userinput>./configure --prefix=/usr          \
     96<screen><userinput>sed -e "s@DEFAULT_PGSOCKET_DIR  \"/tmp\"@DEFAULT_PGSOCKET_DIR  \"/run/postgresql\"@" \
     97    -i src/include/pg_config_manual.h &amp;&amp;
     98./configure --prefix=/usr          \
    9799            --enable-thread-safety \
    98100            --docdir=/usr/share/doc/postgresql-&postgresql-version; &amp;&amp;
     
    118120    <systemitem class="username">root</systemitem> user:</para>
    119121
    120 <screen role="root"><userinput>install -v -m700 -d /srv/pgsql/data &amp;&amp;
     122<screen role="root"><userinput>install -v -dm700 /srv/pgsql/data &amp;&amp;
     123install -v -dm755 /run/postgresql &amp;&amp;
    121124groupadd -g 41 postgres &amp;&amp;
    122125useradd -c "PostgreSQL Server" -g postgres -d /srv/pgsql/data \
    123126        -u 41 postgres &amp;&amp;
    124 chown -v postgres /srv/pgsql/data &amp;&amp;
     127chown -Rv postgres:postgres /srv/pgsql /run/postgresql &amp;&amp;
    125128su - postgres -c '/usr/bin/initdb -D /srv/pgsql/data'</userinput></screen>
    126129
     
    149152  <sect2 role="commands">
    150153    <title>Command Explanations</title>
     154
     155    <para>
     156      <command>sed -e ...</command>: This sed changes server socket location
     157      from <filename class="directory">/tmp</filename> to
     158      <filename class="directory">/run/postgresql</filename>.
     159    </para>
    151160
    152161    <para><parameter>--docdir=/usr/share/doc/postgresql-&postgresql-version;</parameter>:
Note: See TracChangeset for help on using the changeset viewer.