Commit f93449eb authored by Peter Eisentraut's avatar Peter Eisentraut

'chown -R postgres /usr/local/pgsql' is wrong. Need to do some more typing.

parent aaed7780
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/installation.sgml,v 1.54 2001/09/10 08:46:46 ishii Exp $ --> <!-- $Header: /cvsroot/pgsql/doc/src/sgml/installation.sgml,v 1.55 2001/09/12 20:57:28 petere Exp $ -->
<chapter id="installation"> <chapter id="installation">
<title><![%flattext-install-include[<productname>PostgreSQL</>]]> <title><![%flattext-install-include[<productname>PostgreSQL</>]]>
...@@ -12,18 +12,20 @@ ...@@ -12,18 +12,20 @@
<title>Short Version</title> <title>Short Version</title>
<para> <para>
<synopsis> <synopsis>
./configure ./configure
gmake gmake
su
gmake install gmake install
adduser postgres adduser postgres
chown -R postgres /usr/local/pgsql mkdir /usr/local/pgsql/data
chown postgres /usr/local/pgsql/data
su - postgres su - postgres
/usr/local/pgsql/bin/initdb -D /usr/local/pgsql/data /usr/local/pgsql/bin/initdb -D /usr/local/pgsql/data
/usr/local/pgsql/bin/postmaster -D /usr/local/pgsql/data &gt;logfile 2&gt;&amp;1 &amp; /usr/local/pgsql/bin/postmaster -D /usr/local/pgsql/data &gt;logfile 2&gt;&amp;1 &amp;
/usr/local/pgsql/bin/createdb test /usr/local/pgsql/bin/createdb test
/usr/local/pgsql/bin/psql test /usr/local/pgsql/bin/psql test
</synopsis> </synopsis>
The long version is the rest of this The long version is the rest of this
<![%flattext-install-include;[document.]]> <![%flattext-install-include;[document.]]>
<![%flattext-install-ignore;[chapter.]]> <![%flattext-install-ignore;[chapter.]]>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment