Is it possible to have multiple KOHA databases on the same Server. With other words is there a way to force one group of clients to use one database and the other group a different database? Does KOHA make provision for that? I will appreciate help on that!
As far as I know there is no provision in the code for such a setup. However, it is possible to have the same server host two different installations of Koha, each pointed at a different database. This is the setup I have. With an Apache config like: NameVirtualHost [ip] <VirtualHost opac.your.domain> ServerName opac.your.domain ... </VirtualHost> <VirtualHost koha.your.domain> ServerName koha.your.domain ... </VirtualHost> <VirtualHost opac2.your.domain> ServerName opac2.your.domain> ... </VirtualHost> <VirtualHost koha2.your.domain> ServerName koha2.your.domain ... </VirtualHost> and the appropriate DNS entries. On Mon, 2007-12-03 at 20:06 +0200, ZANG wrote:
Is it possible to have multiple KOHA databases on the same Server.
With other words is there a way to force one group of clients to use one database
and the other group a different database?
Does KOHA make provision for that?
I will appreciate help on that!
_______________________________________________ Koha-devel mailing list Koha-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/koha-devel
As far as I know there is no provision in the code for such a setup. However, it is possible to have the same server host two different installations of Koha, each pointed at a different database. This is the setup I have. mmm... yes there is provision in the code.
Michael Hafen a écrit : the trick here is, as you (Michael) pointed is to have more than 2 virtual hosts. And, in each VHost, one must set SetEnv KOHA_CONF=/path/to/this_or_those_koha.xml and SetEnv PER5LIB=/patch/to/this/koha_directory I have 20 Koha setups on my computer ! -- Paul POULAIN BibLibre SARL Expert en Logiciels Libres pour l'info-doc Tel : 04 91 31 45 19
participants (3)
-
Michael Hafen -
Paul POULAIN -
ZANG