trying to enable concurrent db connections E.g - DB1, Local machine id-1 DB1, local machine id-2 I am trying to use same db connections from multiple systems and configured the same db under jdbc-url property in database-config.xml file
but i am getting below errors : INFO Starting single-node cluster channel INFO Members joined the cluster: [Local machine id 2] **NOTE :Server of Local machine with id 1 is up ** ERROR Cluster members are still active : [Local machine id 1] WARN Cannot start cluster channel, stopping the channel An exception was thrown, Billing Center unable to start GW Lifecycle Exception Caused by GWConfigurationException: Other servers are found active, but the clustering is disabled.
Few things missed in initial query:
- We are using SQL DB (version 14.0.3) hosted on a server, and multiple people are trying to connect to this db from their local studio.
- we are using GW Version 10.0.2 (Self-managed)
The most rubust way to do this would be to switch to using PostgreSQL for your local DB, which doesn't have the same constraints as the ootb H2 configuration. This is a relatively straightforward change but do use the correct version of PostgreSQL (12.6 or later minor versions, I believe). If you choose this option and hit issues please add a comment and I will attempt to help further.
For staying with H2, there is a switch you can add to the H2 jdbc connect string - append ;AUTO_SERVER=TRUE to the database URL - as shown in this posting:
https://stackoverflow.com/a/27129276/22770332
One of these approaches should help, but be aware that for cloud deployments, using this configuration won't work for accessing other databases. Your question is a little abstract to know your exact use cases so I'm adding this just to make sure you understand the limitations of this approach.