Re: Does PostgreSQL support multi-instancing?

From: Steve Crawford <scrawford(at)pinpointresearch(dot)com>
To: Bill <postgresql(at)dbginc(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Does PostgreSQL support multi-instancing?
Date: 2006-11-08 23:57:12
Message-ID: 45526ED8.4090604@pinpointresearch.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Bill wrote:
> Is is possible to have two different versions of PostgreSQL running on
> the same computer at the same time?
>

It's easy to have two *instances* of postgresql running - they just need
to have their own data directories and be configured to not conflict
with each other (ie. listen on different ports).

Having two purely separate versions should be doable but more tricky as
you will have to build them in such a way each will see its own version
of certain libraries. Perhaps using static linking would deal with this
issue - I'll let someone else chime in on that. You will still, of
course, need to use different ports and data directories.

You could, if you prefer, set up multiple virtual servers on the same
computer and run each copy of PG on its own virtual server.

Cheers,
Steve

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Jeff Davis 2006-11-09 00:11:23 Re: Performance monitoring
Previous Message Bill 2006-11-08 23:43:20 Re: How much memory is required?