Re: [GENERAL] Database synchronisation over the internet...

From: Paul Branston <apbran(at)rannoch(dot)demon(dot)co(dot)uk>
To: Wim Aarts <w(dot)aarts(at)dsdeurne(dot)nl>
Cc: pgsql-general(at)postgreSQL(dot)org
Subject: Re: [GENERAL] Database synchronisation over the internet...
Date: 2000-01-13 20:41:17
Message-ID: Pine.LNX.4.10.10001132036210.16367-100000@rannoch.demon.co.uk
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi Wim,

I am also working on the self same thing. I am using ssh to authenticate
and encrpyt the connection. The master database uses pg_dump, since the
data is not too large, to create a file which is securely copied via scp
to the slave host. An ssh connection then logs into the slave,drops the
table and loads the data from the dump file which has been copied over.

seems to work so far, but there must be more refinements I can add.

Paul

On Thu, 13 Jan 2000, Wim Aarts wrote:

> Hi All,
>
> Availabilty is going to play an important role in some postgreSQL applications
> we've build, (mission critical for those who wants to know).
> Up until now everything has been straight forward SQL. And for backups we rely
> on dumps and tapes. In the near future we would like to have a system that
> enables synchronisation of data over the internet.
> The requirements are:
> security of data... (SSL ? in Europe)
> master slave concept where the data on the slave is only changed by the master
> and is allowed to be 10 minutes behind.
>
> What might we a good strategy for implementing such a system?
>
>
> --
> Wim Aarts
>
>
>
> ************
>

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message JGlass 2000-01-13 20:58:53
Previous Message Adriaan Joubert 2000-01-13 19:10:17 Re: [GENERAL] searching oid's