11<!--
2- $Header: /cvsroot/pgsql/doc/src/sgml/ref/postmaster.sgml,v 1.9 2000/05/02 20:02:03 thomas Exp $
2+ $Header: /cvsroot/pgsql/doc/src/sgml/ref/postmaster.sgml,v 1.10 2000/07/21 00:24:37 momjian Exp $
33Postgres documentation
44-->
55
@@ -299,11 +299,11 @@ StreamServerPort: cannot bind to port
299299 process already running on the same port number. The easiest way to
300300 determine this is by using the command
301301 <programlisting>
302- % ps -ax | grep postmaster
302+ $ ps -ax | grep postmaster
303303 </programlisting>
304304on BSD-based systems, or
305305 <programlisting>
306- % ps -e | grep postmast
306+ $ ps -e | grep postmast
307307 </programlisting>
308308 for System V-like or POSIX-compliant systems such as HP-UX.
309309 </para>
@@ -408,13 +408,13 @@ IpcMemoryAttach: shmat() failed: Permission denied
408408 should be used instead. Using
409409
410410 <programlisting>
411- % kill -KILL
411+ $ kill -KILL
412412 </programlisting>
413413
414414or its alternative form
415415
416416 <programlisting>
417- % kill -9
417+ $ kill -9
418418 </programlisting>
419419
420420 will prevent <application>postmaster</application>
@@ -443,7 +443,7 @@ or its alternative form
443443 values, type:
444444
445445 <programlisting>
446- % nohup postmaster >logfile 2>&1 &
446+ $ nohup postmaster >logfile 2>&1 &
447447 </programlisting>
448448
449449 This command will start up <application>postmaster</application>
@@ -456,7 +456,7 @@ or its alternative form
456456 To start <application>postmaster</application> with a specific port:
457457
458458 <programlisting>
459- % nohup postmaster -p 1234 &
459+ $ nohup postmaster -p 1234 &
460460 </programlisting>
461461
462462 This command will start up <application>postmaster</application>
@@ -465,14 +465,14 @@ or its alternative form
465465 using psql, you would need to run it as
466466
467467 <programlisting>
468- % psql -p 1234
468+ $ psql -p 1234
469469 </programlisting>
470470
471471 or set the environment variable <envar>PGPORT</envar>:
472472
473473 <programlisting>
474- % setenv PGPORT 1234
475- % psql
474+ $ setenv PGPORT 1234
475+ $ psql
476476 </programlisting>
477477 </para>
478478 </refsect1>
0 commit comments