Re: How to find out the current version of the MySQL installation ? > Command line: mysql --version
This will give you version of client libraries.
Run this command line to obtain server version: mysql -u <username> -p
-h <hostname> -e "select version()" |