This is a discussion on How to find out the current version of the MySQL installation ? within the MySQL forums, part of the Database Server Software category; --> How to find out (from the command line under Linux) the current version of the MySQL installation ? Or ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| |||
| Werner Sammer <wersam@yahoo.de> wrote: > How to find out (from the command line under Linux) > the current version of the MySQL installation ? > Or is there a config file which contains the version number ? > Werner Command line: mysql --version Regards, Johan -- _____________________________________ Ing. Johan van Oostrum chaos geordend - www.chaosgeordend.nl _____________________________________ |
| ||||
| > 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()" |