diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2001-09-12 20:57:28 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2001-09-12 20:57:28 +0000 |
commit | f93449eb34eb40d8063174e9dcb40c7736d90fd1 (patch) | |
tree | a922fffbe1803e3000e23b82432c75ff130538f7 /doc/src | |
parent | aaed778074c777296238162784bd2bc1fd0fb4e7 (diff) | |
download | postgresql-f93449eb34eb40d8063174e9dcb40c7736d90fd1.tar.gz postgresql-f93449eb34eb40d8063174e9dcb40c7736d90fd1.zip |
'chown -R postgres /usr/local/pgsql' is wrong. Need to do some more typing.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/installation.sgml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/src/sgml/installation.sgml b/doc/src/sgml/installation.sgml index ae4ac81ce64..9e98acb407d 100644 --- a/doc/src/sgml/installation.sgml +++ b/doc/src/sgml/installation.sgml @@ -1,4 +1,4 @@ -<!-- $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"> <title><![%flattext-install-include[<productname>PostgreSQL</>]]> @@ -12,18 +12,20 @@ <title>Short Version</title> <para> - <synopsis> +<synopsis> ./configure gmake +su gmake install adduser postgres -chown -R postgres /usr/local/pgsql +mkdir /usr/local/pgsql/data +chown postgres /usr/local/pgsql/data su - postgres /usr/local/pgsql/bin/initdb -D /usr/local/pgsql/data /usr/local/pgsql/bin/postmaster -D /usr/local/pgsql/data >logfile 2>&1 & /usr/local/pgsql/bin/createdb test /usr/local/pgsql/bin/psql test - </synopsis> +</synopsis> The long version is the rest of this <![%flattext-install-include;[document.]]> <![%flattext-install-ignore;[chapter.]]> |