반응형
출처: http://zetawiki.com/wiki/MySQL_%EB%B2%84%EC%A0%84_%ED%99%95%EC%9D%B8
방법 1: mysql[편집]
[root@zetawiki ~]# mysql --version mysql Ver 14.12 Distrib 5.0.77, for redhat-linux-gnu (x86_64) using readline 5.1
- → 5.0.77
방법 2: mysql 접속[편집]
[root@zetawiki ~]# mysql -u testuser -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 810996 Server version: 5.0.77 Source distribution Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql>
방법 3: SQL[편집]
SELECT VERSION(); SHOW VARIABLES LIKE 'version';
mysql> select version(); +-----------+ | version() | +-----------+ | 5.0.77 | +-----------+ 1 row in set (0.00 sec)
mysql> SHOW VARIABLES LIKE 'version'; +---------------+--------+ | Variable_name | Value | +---------------+--------+ | version | 5.0.77 | +---------------+--------+ 1 row in set (0.00 sec)
방법 4: yum[편집]
[root@zetawiki ~]# yum list installed mysql* ... (생략) Installed Packages mysql.x86_64 5.1.47-1.fc11 @updates mysql-devel.x86_64 5.1.47-1.fc11 @updates mysql-libs.x86_64 5.1.47-1.fc11 @updates mysql-server.x86_64 5.1.47-1.fc11 @updates
- → 5.1.47
방법 5: rpm[편집]
[root@zetawiki ~]# rpm -qa | grep ^mysql
mysql-5.1.47-1.fc11.x86_64
mysql-libs-5.1.47-1.fc11.x86_64
mysql-server-5.1.47-1.fc11.x86_64
mysql-devel-5.1.47-1.fc11.x86_64
- → 5.1.47
방법 6: mysqladmin[편집]
[root@zetawiki ~]# mysqladmin -uroot -pP@ssw0rd version | grep ^Server Warning: Using a password on the command line interface can be insecure. Server version 5.6.17
반응형
'프로젝트 관련 조사 > DB' 카테고리의 다른 글
[MySQL] 다른 데이터베이스의 테이블 복사하기 (0) | 2015.12.03 |
---|---|
[MySQL] 최근 데이터 가져 오는 구문 (0) | 2015.12.01 |
[MySQL] 컬럼 이름 변경하기 에러나는 경우 (0) | 2015.12.01 |
[MySQL] Crontab과 쉘스크립트를 이용한 DB백업업 (0) | 2015.11.30 |
[MySQL] mysql import 안될 경우 이 방법을 써보자 (0) | 2015.11.30 |