I'm in the process of upgrading a server. I have chosen the latest Ubuntu LTS, 14.04 for installation on an Amazon EC2 instance. This is going well. However, upon installing phpmyadmin for db admin tasks, I see a warning:
Your PHP MySQL library version 5.5.37 differs from your MySQL server version 5.6.17. This may cause unpredictable behavior.
This is happening because my database server is an Amazon RDS instance running a different version of MySQL server than the client binaries installed on the EC2 instance.
Is this really a problem? The solutions as I see it are:
1) Ignore it, which I'm guessing will cause my heartache later when some weird problem happens that is hard to find.
2) Upgrade the server's client library (and php module) so that it uses MySQL 5.6.x. Aside from the difficulty of compiling from source, this also means that I have to manually recompile from source as bug fixes and new versions are released. I.e., I cannot rely on the Ubuntu package maintainers to keep on top of things and I'll have to do it myself. Verdict: Pain In The Ass (PITA).
3) Downgrade my RDS instance. While this is certainly much easier in the short term (literally just a matter of clicking around in a browser console), I find it sad to do so and wonder if I'll be missing any particularly effective new features.
Can anyone chime in on this? Thoughts? Advice? Etc?