Author Topic: redundant config dbserver  (Read 2442 times)

Offline JTL

  • Full Member
  • ***
  • Posts: 123
  • Karma: 2
redundant config dbserver
« on: September 18, 2008, 11:56:42 PM »
I'm being an idiot, but its not working... must have missed something obvious.

Single Config server, on Server A, port 2020

Originally had Single Config DB Server on Server A, port 2022

I've setup an additional Config DB Server on Server B, port 2022.

Config DB Server A has Config DB Server B set as 'warm standby', and they correctly failover (A->B) and B becomes Primary.

However, Config Server continues to try and look for the DB Server on Server A!!!

The confserv.conf file on Server A has a section which has the dbserver details for the Config DB Server on Server B - labelled [serverB_dbserver]

What's gone wrong?!

Offline René

  • Administrator
  • Hero Member
  • *****
  • Posts: 1832
  • Karma: 62
Re: redundant config dbserver
« Reply #1 on: September 19, 2008, 12:11:48 AM »
Hi,

Please check that your confserv.cfg file is correct. It should be like this:

[confserv]
server=cfg_dbserver
...

[cfg_dbserver]
...
server=cfg_dbserver_b
...

[cfg_dbserver_b]
...
server=cfg_dbserver
...

R.

Offline JTL

  • Full Member
  • ***
  • Posts: 123
  • Karma: 2
Re: redundant config dbserver
« Reply #2 on: September 19, 2008, 12:20:53 AM »
Spot on... I'd forgotten to specify the server= parts in the corresponding sections.  ;D

Thanks!