Re: pgsql server reset the connection immediately after connected

From: Chris Angelico <rosuav(at)gmail(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: pgsql server reset the connection immediately after connected
Date: 2012-11-02 03:25:18
Message-ID: CAPTjJmrm5HVu0+fggeTtTZrx=RAjFfp2Rf-VAB+mGqecMFy7ww@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Fri, Nov 2, 2012 at 1:57 PM, Dongkuo Ma <luc(dot)mdk(at)gmail(dot)com> wrote:
> Hi
> the python code is
>
> logging.info("database connecting...")
> conn = connect(database="dbname", user="user",
> password="password",host="127.0.0.1")
> logging.info("database connected")
> conn.autocommit = True
> conn.set_client_encoding('UTF8')
> cur = conn.cursor()
> #the above code executed without exception
> #and [server closed the connection unexpectedly] thrown when any
> cur.execute() called
> I think it's strange because the server reset connection after connected,and
> the connect function should throw a exception.
>
> It's nothing in the log file.

Is there a long delay between connecting and executing a query? It may
be that something disconnected you during that time. Or could the
server have been restarted?

Can you make a simple Python script that always fails in this way?

Chris Angelico

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Dongkuo Ma 2012-11-02 03:43:11 Re: pgsql server reset the connection immediately after connected
Previous Message Adrian Klaver 2012-11-02 03:17:38 Re: pgsql server reset the connection immediately after connected