diff options
Diffstat (limited to 'doc/src/sgml')
-rw-r--r-- | doc/src/sgml/ref/psql-ref.sgml | 4 | ||||
-rw-r--r-- | doc/src/sgml/runtime.sgml | 14 | ||||
-rw-r--r-- | doc/src/sgml/start.sgml | 14 |
3 files changed, 16 insertions, 16 deletions
diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml index 2a4fe712201..ef14a9fdd42 100644 --- a/doc/src/sgml/ref/psql-ref.sgml +++ b/doc/src/sgml/ref/psql-ref.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.56 2001/06/10 03:46:31 momjian Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.57 2001/07/15 13:45:03 petere Exp $ Postgres documentation --> @@ -2349,7 +2349,7 @@ Field separator is "oo", <para> Pressing Control-C during a <quote>copy in</quote> (data sent to the server) doesn't show the most ideal of behaviors. If you get a message - such as <quote>PQexec: you gotta get out of a COPY state yourself</quote>, + such as <quote>COPY state must be terminated first</quote>, simply reset the connection by entering <literal>\c - -</literal>. </para> </listitem> diff --git a/doc/src/sgml/runtime.sgml b/doc/src/sgml/runtime.sgml index f73bddf354b..8a7923b957b 100644 --- a/doc/src/sgml/runtime.sgml +++ b/doc/src/sgml/runtime.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.72 2001/06/30 22:03:25 petere Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.73 2001/07/15 13:45:03 petere Exp $ --> <Chapter Id="runtime"> @@ -392,9 +392,9 @@ IpcSemaphoreCreate: semget(key=5440026, num=16, 01600) failed: No space left on <para> <screen> -PQconnectPoll() -- connect() failed: Connection refused - Is the postmaster running (with -i) at 'server.joe.com' - and accepting connections on TCP/IP port 5432? +psql: could not connect to server: Connection refused + Is the server running on host server.joe.com and accepting + TCP/IP connections on port 5432? </screen> This is the generic <quote>I couldn't find a server to talk to</quote> failure. It looks like the above when TCP/IP @@ -407,9 +407,9 @@ PQconnectPoll() -- connect() failed: Connection refused Alternatively, you'll get this when attempting Unix-socket communication to a local postmaster: <screen> -connectDBstart() -- connect() failed: No such file or directory - Is the postmaster running locally - and accepting connections on Unix socket '/tmp/.s.PGSQL.5432'? +psql: could not connect to server: Connection refused + Is the server running locally and accepting + connections on Unix domain socket "/tmp/.s.PGSQL.5432"? </screen> </para> diff --git a/doc/src/sgml/start.sgml b/doc/src/sgml/start.sgml index 12a413d7ec3..ebbccfd042e 100644 --- a/doc/src/sgml/start.sgml +++ b/doc/src/sgml/start.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/start.sgml,v 1.15 2000/11/30 23:20:50 tgl Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/start.sgml,v 1.16 2001/07/15 13:45:03 petere Exp $ --> <chapter id="start"> @@ -154,18 +154,18 @@ $Header: /cvsroot/pgsql/doc/src/sgml/start.sgml,v 1.15 2000/11/30 23:20:50 tgl E <programlisting> % psql template1 -psql: connectDBStart() -- connect() failed: No such file or directory - Is the postmaster running locally - and accepting connections on Unix socket '/tmp/.s.PGSQL.5432'? +psql: could not connect to server: Connection refused + Is the server running locally and accepting + connections on Unix domain socket "/tmp/.s.PGSQL.5432"? </programlisting> or <programlisting> % psql -h localhost template1 -psql: PQconnectPoll() -- connect() failed: Connection refused - Is the postmaster running (with -i) at 'localhost' - and accepting connections on TCP/IP port 5432? +psql: could not connect to server: Connection refused + Is the server running on host localhost and accepting + TCP/IP connections on port 5432? </programlisting> it is usually because |