본문 바로가기
IT

MariaDB(MySQL) 버전 확인하기

by developer's warehouse 2024. 2. 28.

MariaDB 버전을 확인하는 방법 5가지에 대해서 모두 알아보겠습니다. MySQL의 경우에도 같은류의 명령을 이용해서 확인 가능합니다. 

MariaDB(MySQL) 버전 확인하기 썸네일

mariadb의 버전 확인 방법 구분

mariadb의 버전을 확인하기 위해서는 두 가지 방법이 있습니다.

1. 터미널에서 확인하는 법

터미널에서 maraidb 바이너리의 옵션 명령을 통해 확인할 수 있습니다.

2. mariadb 쉘을 통해 쿼리로 확인하는 법

MariaDB 쉘, 또는 mariadb-shell은 MariaDB 배포를 관리하기 위한 관리 도구입니다.

 

mariadb의 버전 확인 명령 및 결과

실제로 버전을 확인할 수 있는 모든 방법으로 하나씩 수행 후 결과를 확인해 보겠습니다.

1. MariaDB 쉘에서 @@version 변수 사용

`SELECT @@version;` 명령을 사용하면 서버 버전 번호를 반환합니다.

:~$ sudo mariadb
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 68
Server version: 10.6.16-MariaDB-0ubuntu0.22.04.1 Ubuntu 22.04

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> SELECT @@version;
+----------------------------------+
| @@version                        |
+----------------------------------+
| 10.6.16-MariaDB-0ubuntu0.22.04.1 |
+----------------------------------+
1 row in set (0.001 sec)

MariaDB [(none)]>

2. MariaDB 쉘에서 SHOW VARIABLES 문을 통해 버전 확인

`SHOW VARIABLES WHERE variable_name = 'version';` 명령을 사용하면 version 변수의 값을 반환합니다.

~$ sudo mariadb
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 67
Server version: 10.6.16-MariaDB-0ubuntu0.22.04.1 Ubuntu 22.04

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> SELECT @@version;
+----------------------------------+
| @@version                        |
+----------------------------------+
| 10.6.16-MariaDB-0ubuntu0.22.04.1 |
+----------------------------------+
1 row in set (0.001 sec)

MariaDB [(none)]>

3. 터미널에서 MariaDB 버전 확인

터미널에서 `mariadb -V` 명령을 입력하면 현재 서버에 설치된 MariaDB의 버전을 표시합니다.

~$ mariadb -V
mariadb  Ver 15.1 Distrib 10.6.16-MariaDB, for debian-linux-gnu (x86_64) using  EditLine wrapper

 

4. MariaDB 쉘에서 SELECT VERSION()을 통해 버전 확인

다음의 명령으로 MariaDB 쉘에 연결한 후, `SELECT VERSION();` 명령을 사용하면 MariaDB 버전을 확인할 수 있습니다.

~$ mariadb -u tpcc -p
Enter password:
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 65
Server version: 10.6.16-MariaDB-0ubuntu0.22.04.1 Ubuntu 22.04

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> select version();
+----------------------------------+
| version()                        |
+----------------------------------+
| 10.6.16-MariaDB-0ubuntu0.22.04.1 |
+----------------------------------+
1 row in set (0.001 sec)

MariaDB [(none)]>


~$ sudo mariadb
[sudo] mariadb 암호:
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 66
Server version: 10.6.16-MariaDB-0ubuntu0.22.04.1 Ubuntu 22.04

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]>



이 명령들은 모두 MariaDB 서버의 버전 정보를 제공합니다. 더 자세한 방법은 아래의 참고문헌을 참고해 주세요.

참고문헌

(1) 6 Ways to Check your MariaDB Version - Database.Guide. https://database.guide/6-ways-to-check-your-mariadb-version/.
(2) VERSION - MariaDB Knowledge Base. https://mariadb.com/kb/en/version/.
(3) How to check MariaDB version - Mkyong.com. https://mkyong.com/mysql/how-to-check-mariadb-version/.
(4) How to Check MariaDB Version on Ubuntu 22.04 - Linux Genie. https://linuxgenie.net/how-to-check-mariadb-version-on-ubuntu-22-04/.

facebook twitter kakaoTalk kakaostory naver band shareLink