diff options
Diffstat (limited to 'src/man/createdb.1')
-rw-r--r-- | src/man/createdb.1 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/man/createdb.1 b/src/man/createdb.1 index 07fc66a852d..eece6870045 100644 --- a/src/man/createdb.1 +++ b/src/man/createdb.1 @@ -1,6 +1,6 @@ .\" This is -*-nroff-*- .\" XXX standard disclaimer belongs here.... -.\" $Header: /cvsroot/pgsql/src/man/Attic/createdb.1,v 1.6 1998/01/11 22:17:23 momjian Exp $ +.\" $Header: /cvsroot/pgsql/src/man/Attic/createdb.1,v 1.7 1998/01/26 01:42:42 scrappy Exp $ .TH CREATEDB UNIX 11/05/95 PostgreSQL PostgreSQL .SH NAME createdb - create a database @@ -60,7 +60,7 @@ Specifies an authentication system .IR pgintro (1)) to use in connecting to the .IR postmaster -process. The default is site-specific. +process. This option no longer has any effect. .TP .BR "-D" " dbpath" Specifies the alternate database location for this database. @@ -79,13 +79,13 @@ is listening for connections. Defaults to 5432, or the value of the environment variable (if set). .SH EXAMPLES .nf -# create 5432 demo database +# create the demo database using the postmaster on the local host, port 5432. createdb demo .fi .nf # create the demo database using the postmaster on host eden, -# port using the Kerberos authentication system. -createdb -a kerberos -p 5432 -h eden demo +# port 5000. +createdb -p 5000 -h eden demo .fi .SH FILES .TP 5n |