Re: Can we have 2 databases on same server

Поиск
Список
Период
Сортировка
От Chris
Тема Re: Can we have 2 databases on same server
Дата
Msg-id 47A01FAA.9060306@gmail.com
обсуждение исходный текст
Ответ на Can we have 2 databases on same server  ("Suresh Gupta VG" <suresh.g@zensar.com>)
Список 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 по дате отправления:

Предыдущее
От: "Brian Modra"
Дата:
Сообщение: Re: [ADMIN] how to create cluster(loadbanacing) of postgresql server
Следующее
От: "Gregory Williamson"
Дата:
Сообщение: Re: [ADMIN] Can we have 2 databases on same server