Re: Can we have 2 databases on same server - Mailing list pgsql-general

From Chris
Subject Re: Can we have 2 databases on same server
Date
Msg-id 47A01FAA.9060306@gmail.com
Whole thread Raw
In response to Can we have 2 databases on same server  ("Suresh Gupta VG" <suresh.g@zensar.com>)
List pgsql-general
> 1)       Can I please know, if we can run 2 databases on the same server
> with out any conflicts?

You can as long as they are installed in separate locations.

That is:

db1: /usr/local/pgsql/7.4
db2: /usr/local/pgsql/8.1

The main reason is so your app doesn't pick up the wrong binary and use
that and cause all sorts of weird and wonderful errors :)

> 2)       If it is so, at what stage we are need to configure the 2
> databases? Pls provide links or docs if available.

http://www.postgresql.org/docs/8.2/static/install-procedure.html (look
at the --prefix stuff).

http://www.postgresql.org/docs/8.2/static/creating-cluster.html

and
http://www.postgresql.org/docs/8.2/static/install-upgrading.html

for how to copy your data into the new system.


They will also need to run on different ports. Edit the postgresql.conf
file on the new install and change the port=5432 line to another
(unused) number.

--
Postgresql & php tutorials
http://www.designmagick.com/

pgsql-general by date:

Previous
From: "Brian Modra"
Date:
Subject: Re: [ADMIN] how to create cluster(loadbanacing) of postgresql server
Next
From: "Gregory Williamson"
Date:
Subject: Re: [ADMIN] Can we have 2 databases on same server