171k views
1 vote
How to check mysql version in linux

User Dln
by
7.7k points

1 Answer

3 votes

Final answer:

To check the MySQL version in Linux, you can type 'mysql -V' in the terminal or use 'SHOW VARIABLES LIKE "%version%";' within the MySQL prompt for detailed version information.

Step-by-step explanation:

To check the MySQL version on a Linux system, you can use the command-line interface. There are several ways you can retrieve the version number, but one of the most common methods is by using the mysql command itself. For example:

  1. Open a terminal window.
  2. Type mysql -V and press Enter. This will display the installed MySQL version along with additional version detail.
  3. Alternatively, if you have access to the MySQL prompt, you can type SHOW VARIABLES LIKE "%version%"; after logging into the MySQL server to get detailed version information.

Note that you might need the proper permissions to execute these commands, especially if you are accessing the mysql prompt, as it requires a MySQL user that has the necessary privileges.

User Christian Jensen
by
7.2k points