MariaDB/MySQL : How to get version information
Putting this here for my own future reference. Recently I need to move some databases to a new MariaDB server and part of the migration process requires me to find out the MariaDB version and the OpenSSL version used by MariaDB.
Below are two ways to find out the MariaDB version from console(terminal).
The first method allows us to see the rest of the MariaDB components version.
$ mysql -u root -p
MariaDB [(none)]> SHOW VARIABLES LIKE '%version%';
+---------------------------------+------------------------------------------+
| Variable_name | Value |
+---------------------------------+------------------------------------------+
| innodb_version | 10.3.15 |
| protocol_version | 10 |
| slave_type_conversions | |
| system_versioning_alter_history | ERROR |
| system_versioning_asof | DEFAULT |
| version | 10.3.15-MariaDB-1:10.3.15+maria~bionic |
| version_comment | mariadb.org binary distribution |
| version_compile_machine | x86_64 |
| version_compile_os | debian-linux-gnu |
| version_malloc_library | system |
| version_source_revision | 07aef9f7eb936de2b277f8ae209a1fd72510c011 |
| version_ssl_library | OpenSSL 1.1.1 11 Sep 2018 |
| wsrep_patch_version | wsrep_25.24 |
+---------------------------------+------------------------------------------+
13 rows in set (0.001 sec)
If you only want to know the MariaDB version and not the rest of the, then use this method:
$mysql -V
mysql Ver 15.1 Distrib 10.3.15-MariaDB, for debian-linux-gnu (x86_64) using readline 5.2
See also : How to enable MariaDB/MySQL logs ?
By Adam Ng(黃武俊)
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+51.3k Golang : Check if item is in slice/array
+8.1k How to show different content from website server when AdBlock is detected?
+16.1k Golang : How to check if input from os.Args is integer?
+15.2k Golang : Delete certain files in a directory
+11.6k How to tell if a binary(executable) file or web application is built with Golang?
+26.6k Golang : How to check if a connection to database is still alive ?
+18k Golang : Check if a directory exist or not
+9.6k Javascript : Read/parse JSON data from HTTP response
+7.7k Golang : Reverse a string with unicode
+6.8k Swift : substringWithRange() function example
+21.1k Golang : Clean up null characters from input data
+12.7k Swift : Convert (cast) Int or int32 value to CGFloat