MySQL — enable connection to remote server via local /tmp/mysql.sock
I run a shared hosting provider and we’re looking to move to a High Availability (replicated across multiple datacenters) setup for our hosting. We have created a replicated MySQL setup with failover that works wonderfully, and we’d like to move all of our clients’ databases to it.
The only trouble is that we have many many customers, all of whom have configured their WordPress, Drupal, etc. installations to connect to MySQL via a local socket, not to the address of the remove server.
I would hate to have to go through manually and change the connection statement in all of our clients’ sites.
What I’d ideally love to see is a program that listens on /tmp/mysql.sock and forwards connections there to the remote server I specify. I’ve seen SQL Relay, but it seems to require that I hardcode all of the database names and usernames and passwords into its configuration file. This is not going to work for me because our users add new databases dynamically all of the time, and I’d rather not have to write code to updated SQLRelay’s config file every time.
Does anyone have an idea on how to do this?
Alternatively, I’d accept idea on how to handle this at the PHP level. (i.e. redirect any attempted calls to mysql_connect() to use that hostname rather than localhost)
Thanks,
Kevin
You probably want MySQL Proxy to proxy the connection to the real server(s).
Check more discussion of this question.
Related posts:
Leave a comment
Recent Posts
- SCP transfer only modified files
- How can I automate clearing and resetting a Linux user’s home directory to a default?
- Cron expression that runs every 5 minutes from 1:30 am – 6:00 am [duplicate]
- Understanding redundant power supplies
- Is there a way for administrators to disable users from installing Firefox extensions?





