0

I read the postings from this entry. I'm wondering if there is a way to run multiple instances in different processes? Because when I understand it right, running all instances in the same configuration file will create a common master and several worker processes. If the master process dies then all instances die at the same time.

From my perspective it would be better to run them separately, so that each backend system gets its own master. Do you agree? How could I achieve that?

Thankyou.

Community
  • 1
  • 1
  • Why would master die? How do you want several separate processes to listen to the same port? To extend your fears, what if hardware dies? – Alexey Ten Aug 20 '14 at 10:29
  • Hi Alexey,How do you want several separate processes to listen to the same port? -> with virtual IPs, then the master would listen to another socket. To extend your fears, what if hardware dies? -> HA Cluster. Why would master die? -> Because of recompiling new modules, ... -> If I could seperate each master for one backend, I'm more flexible managing the other instances. – JackLevin Aug 21 '14 at 14:55

1 Answers1

0

I think the better solution is to use a HA Cluster. You'll use two master server configured in exactly the same way, and a balancer in front of them.

This configuration will hide a possible fault and will work in "reduced" mode.