EN
Show version of MySQL
1
answers
1
points
How can I check what MySQL version I use on Debian Linux?
1 answer
2
points
Quick solution, just execute below commnad:
mysql -V
It will print currenly used MySQL version.
Example:
root@mail:~# mysql -V
mysql Ver 15.1 Distrib 10.3.15-MariaDB, for debian-linux-gnu (x86_64) using readline 5.2
Screenshot:
On this screenshot we can see that the version of MySQL is 10.3.15-MariaDB
0 comments
Add comment