# linux mysql , MariaDB 버전확인 방법 #

  [root@woo ~]# mysql –version mysql  Ver 15.1 Distrib 10.0.30-MariaDB, for Linux (x86_64) using readline 5.1     [root@woo ~]# mysql -uroot -p Enter password:  Welcome to the MariaDB monitor.  Commands end with ; or g. Your MariaDB connection id is 41489 Server version: 10.0.30-MariaDB MariaDB Server   Copyright (c) 2000, 2016, Oracle, MariaDB Corporation … Read more

Linux 환경에서 MySQL , MariaDB 버전 확인 방법

안녕하세요. 오늘은 linux 환경에서 mysql 및 mariadb 의 버전을 확인하는 방법에 대해 알아보겠습니다.   OS 에서 바로 확인 [root@woo ~]# mysql –version mysql Ver 15.1 Distrib 10.0.30-MariaDB, for Linux (x86_64) using readline 5.1 [root@woo ~]# mysqladmin -uroot -p패스워드 version | grep ^Server Server version 10.0.30-MariaDB   DB 접속 후 확인 [root@woo ~]# mysql -uroot -p … Read more