Error in documentation

From: Justin Clift <jclift(at)iprimus(dot)com(dot)au>
To: pgsql-docs(at)postgresql(dot)org
Subject: Error in documentation
Date: 2001-05-02 11:34:51
Message-ID: 3AEFF0DB.6E5A5FC4@iprimus.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-docs

Hi guys,

Just noticed an error in the 7.1.1 developer docs.

In the Admin Guide, in chapter 3.3 "Starting the database server" it
says :

***

On Solaris, edit the file rc2.d to contain the following single line:

su - postgres -c "/usr/local/pgsql/bin/pg_ctl start -l logfile -D
/usr/local/pgsql/data"

***

This is BADLY WRONG and won't work at all.

Instead the person installing PostgreSQL needs to create a startup
script as /etc/init.d/postgresql, then create a soft link from
/etc/rc3.d/S[00..99]postgresql that script.

The script though, can use the su command given above.

i.e.

echo 'su - postgres -c "/usr/local/pgsql/bin/pg_ctl start -l logfile -D
/usr/local/pgsql/data"' > /etc/init.d/postgresql
chmod 744 /etc/init.d/postgresql
chown root:sys /etc/init.d/postgresql
ln -s /etc/init.d/postgresql /etc/rc3.d/S10postgresql

I haven't tried looking at the documentation .sgml source files and
creating a patch, but if you guys want me to, I guess I could figure it
out.

Regards and best wishes,

Justin Clift

--
"My grandfather once told me that there are two kinds of people: those
who work and those who take the credit. He told me to try to be in the
first group; there was less competition there."
- Indira Gandhi

Responses

Browse pgsql-docs by date

  From Date Subject
Next Message Bruce Momjian 2001-05-02 16:17:33 Default shared memory SGML mention
Previous Message Christopher Kings-Lynne 2001-05-02 04:08:39 RE: Multiple primary keys