keithl8041
keithl8041

Reputation: 2403

configuring MySql cluster failover using the .Net connector

I've got an ASP.Net website which is running on a load-balanced environment (2 Windows servers). It connects to a clustered MySql database which is running on two linux servers running Ubuntu.

We've been running into a number of errors while trying to route the MySql data through our JetNexus load-balancer, so I'm trying to find out if there's a way of configuring the individual web-servers with some sort of automatic database server failover detection. If I were using MS-SQL, I'd configure the connection string using the "Failover partner" parameter, but MySql doesn't support that. Is there anything else like that out there, or is there an alternate solution to this issue?

Extra info:

Thanks for reading !

Upvotes: 1

Views: 1187

Answers (1)

Kaveh Shahbazian
Kaveh Shahbazian

Reputation: 13523

I do not fully understand MySQL Cluster (Never used it) but I have suggestion:

Is it possible to put the cluster servers under a single ip? So the Ubuntu or MySQL Cluster load balance handles the fail-over?

Upvotes: 1

Related Questions