I fear this may go back to my other question about whether anyone is actually 
using this in production ... I've checked the various log files, and am not 
finding any errors, but do notice:

pgsql-lb# ps aux | grep pglb
pgsql 21700  0.0  0.1  4152  2264  ??  IsJ   8:48PM   0:00.02 pglb -D 
/usr/local/pgsql/pglb_1 start
pgsql 24824  0.0  0.1  4152  2276  ??  SJ   11:09PM   0:00.84 pglb: pgsql test2 
[local] DROP (pglb)
root  25012  0.0  0.0  1688  1156  p5  R+J  11:14PM   0:00.00 grep pglb

which means that two of the pglb processes died off, as I swear there was three 
before ...


template1=# \l
       List of databases
   Name    | Owner | Encoding
-----------+-------+-----------
 postgres  | pgsql | SQL_ASCII
 template0 | pgsql | SQL_ASCII
 template1 | pgsql | SQL_ASCII
 test      | pgsql | SQL_ASCII
(4 rows)

template1=# \connect test
You are now connected to database "test".
test=# \d
No relations found.
test=# create table test( i int4 ) ;
server closed the connection unexpectedly
        This probably means the server terminated abnormally
        before or while processing the request.
The connection to the server was lost. Attempting reset: Succeeded.
test=# create table test( i int4 ) ;
server closed the connection unexpectedly
        This probably means the server terminated abnormally
        before or while processing the request.
The connection to the server was lost. Attempting reset: Succeeded.
test=# create database test2;
CREATE DATABASE
test=# \connect test2
You are now connected to database "test2".
test2=# create table test( i int4 ) ;
server closed the connection unexpectedly
        This probably means the server terminated abnormally
        before or while processing the request.
The connection to the server was lost. Attempting reset: Succeeded.
test2=# drop database test2;
^CCould not send cancel request: PQcancel() -- connect() failed: No such file 
or directory

_______________________________________________
Pgcluster-general mailing list
[email protected]
http://pgfoundry.org/mailman/listinfo/pgcluster-general

Reply via email to