본문 바로가기
Database/Mysql

Mysql/Mariadb 버전 확인

by 화곡공룡 2020. 12. 16.
반응형

Mysql 기반 버전확인 방법에 대해 알아보겠습니다.

1. linux 명령어로 확인

mysql> mysql --version
mysql  Ver 15.1 Distrib 10.2.32-MariaDB, for Linux (x86_64) using readline 5.1
mysql> 

 

2. DB 접속으로 확인

ysql> mysql -uroot -p
Enter password:
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 474
Server version: 10.2.32-MariaDB MariaDB Server

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)]>

 

3. select로 확인

MariaDB [(none)]> select version() ;
+-----------------+
| version()       |
+-----------------+
| 10.2.32-MariaDB |
+-----------------+
1 row in set (0.00 sec)

 

4. 파라메터 확인

MariaDB [(none)]> show variables like 'version' ;
+---------------+-----------------+
| Variable_name | Value           |
+---------------+-----------------+
| version       | 10.2.32-MariaDB |
+---------------+-----------------+
1 row in set (0.00 sec)

MariaDB [(none)]>

 

이상 Mysql/MariaDB 버전 확인방법에 대해 설명하였습니다.

 

반응형

댓글