Обсуждение: Stop connections to a specific database

Поиск
Список
Период
Сортировка

Stop connections to a specific database

От
"Scott Whitney"
Дата:
I'm migrating a pg server (v 8.1.4) this weekend, and I have 2 dbs left on
it. One cannot be shut down until tomorrow. The last remaining one, I can
migrate today.

However, the software that talks to it is somewhat "hinky" and has several
places that connect -- there is no overall consolidated connection
information.

To ensure this is working properly, I want to disable connections to that db
on the old server while using the new one for testing, to ensure everything
is properly working. Given the fact that the other db must remain live on
this old server during that time, I just want to stop connections to this
one particular database.

Is there a simple, preferred method for doing so?



Re: Stop connections to a specific database

От
"Kevin Grittner"
Дата:
>>> "Scott Whitney" <swhitney@journyx.com> wrote:

> I just want to stop connections to this
> one particular database.
>
> Is there a simple, preferred method for doing so?

It sounds like pg_hba.conf might be your ticket:

http://www.postgresql.org/docs/8.2/interactive/auth-pg-hba-conf.html

-Kevin

Re: Stop connections to a specific database

От
Rex Mabry
Дата:

You can update your pg_hba.conf file.  Change the database column to list the one database.

 

# DATABASE can be "all", "sameuser", "samerole", a database name, or
# a comma-separated list thereof.

 

Assuming you database is called "mydb and you enter the connecting from IP, it should look like this.

# TYPE  DATABASE    USER        CIDR-ADDRESS          METHOD
host         mydb            all            10.0.0.0/32                  md5

 

After that, do a pg_ctl reload



--- On Fri, 7/18/08, Scott Whitney <swhitney@journyx.com> wrote:

From: Scott Whitney <swhitney@journyx.com>
Subject: [ADMIN] Stop connections to a specific database
To: pgsql-admin@postgresql.org
Date: Friday, July 18, 2008, 10:07 AM

I'm migrating a pg server (v 8.1.4) this weekend, and I have 2 dbs left on
it. One cannot be shut down until tomorrow. The last remaining one, I can
migrate today.

However, the software that talks to it is somewhat "hinky" and has
several
places that connect -- there is no overall consolidated connection
information.

To ensure this is working properly, I want to disable connections to that db
on the old server while using the new one for testing, to ensure everything
is properly working. Given the fact that the other db must remain live on
this old server during that time, I just want to stop connections to this
one particular database.

Is there a simple, preferred method for doing so?



-- 
Sent via pgsql-admin mailing list (pgsql-admin@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-admin