Commit 60425f39 authored by Peter Eisentraut's avatar Peter Eisentraut

Fix instructions how to shut down postmaster.

parent 742ca2e0
...@@ -192,7 +192,7 @@ Substitute your paths appropriately. ...@@ -192,7 +192,7 @@ Substitute your paths appropriately.
then shut down the old server, at the latest before you install the new then shut down the old server, at the latest before you install the new
files: files:
kill -INT `cat /usr/local/pgsql/data/postmaster.pid` kill -INT `cat /usr/local/pgsql/data/postmaster.pid | sed 1q`
Versions prior to 7.0 do not have this "postmaster.pid" file. If you are Versions prior to 7.0 do not have this "postmaster.pid" file. If you are
using such a version you must find out the process ID of the server using such a version you must find out the process ID of the server
......
<!-- $PostgreSQL: pgsql/doc/src/sgml/installation.sgml,v 1.187 2003/11/29 19:51:37 pgsql Exp $ --> <!-- $PostgreSQL: pgsql/doc/src/sgml/installation.sgml,v 1.188 2003/12/11 19:56:54 petere Exp $ -->
<chapter id="installation"> <chapter id="installation">
<title><![%standalone-include[<productname>PostgreSQL</>]]> <title><![%standalone-include[<productname>PostgreSQL</>]]>
...@@ -423,7 +423,7 @@ JAVACMD=$JAVA_HOME/bin/java ...@@ -423,7 +423,7 @@ JAVACMD=$JAVA_HOME/bin/java
old one then shut down the old server, at the latest before you old one then shut down the old server, at the latest before you
install the new files: install the new files:
<screen> <screen>
<userinput>kill -INT `cat /usr/local/pgsql/data/postmaster.pid`</> <userinput>kill -INT `cat /usr/local/pgsql/data/postmaster.pid | sed 1q`</>
</screen> </screen>
Versions prior to 7.0 do not have this Versions prior to 7.0 do not have this
<filename>postmaster.pid</> file. If you are using such a version <filename>postmaster.pid</> file. If you are using such a version
......
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