일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 방화벽
- String Functions and Operators
- 오라클
- String Functions and Date Operators
- Data and Time Functions
- Tibero
- Sring Functions and Operators
- 전자정부표준프레임워크
- HTTP
- Date and Time Function
- 전자정부 표준프레임워크
- 티베로
- SVN
- MySQL
- Oracle
- 윈도우
- String Function and Operators
- Date and Time Functions
- Today
- Total
웹이야기
MySQL 버전 확인 본문
MySQL 버전 확인하는 방법
1. 쿼리
mysql>select version();
+-----------+
| version() |
+-----------+
| 8.0.18 |
+-----------+
1 row in set (0.00 sec)
2. 콘솔상에서 로그인
- 윈도우나 리눅스 모두 상관없이 로그인을 하면 버전 정보가 나온다.
C:\mysql-5.7.28-winx64\bin>mysql -uroot -p
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 376
Server version: 8.0.18 Source distribution
Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
3. 또 다른 쿼리가 있다.
mysql> SHOW GLOBAL VARIABLES LIKE '%ver%';
+---------------------------------+--------------------------------------+
| Variable_name | Value |
+---------------------------------+--------------------------------------+
| binlog_gtid_simple_recovery | ON |
| character_set_server | utf8 |
| collation_server | utf8_general_ci |
| innodb_dedicated_server | OFF |
| innodb_force_recovery | 0 |
| innodb_ft_server_stopword_table | |
| innodb_version | 8.0.18 |
| log_error_verbosity | 2 |
| master_verify_checksum | OFF |
| myisam_recover_options | OFF |
| protocol_version | 10 |
| relay_log_recovery | OFF |
| server_id | 1 |
| server_id_bits | 32 |
| server_uuid | 044cfcb0-3417-11ea-8dec-000c29a5cff5 |
| show_create_table_verbosity | OFF |
| slave_sql_verify_checksum | ON |
| slave_type_conversions | |
| tls_version | TLSv1,TLSv1.1,TLSv1.2,TLSv1.3 |
| version | 8.0.18 |
| version_comment | Source distribution |
| version_compile_machine | x86_64 |
| version_compile_os | Linux |
| version_compile_zlib | 1.2.11 |
+---------------------------------+--------------------------------------+
24 rows in set (0.00 sec)
* version_comment 에 Source distribution 도 맘에 든다.
4. 터미널상에서 조회
#./mysql --version
./mysql Ver 8.0.18 for Linux on x86_64 (Source distribution)
'D > MySQL' 카테고리의 다른 글
MySQL 데이타베이스 생성 및 사용 (0) | 2020.03.04 |
---|---|
MySQL 현재 사용자 (0) | 2020.03.04 |
유닉스 환경의 MySQL에서 빠져나오는 방법 (0) | 2020.03.04 |
MySQL 5.7 설치(windows 10 / noinstaller 버전, zip archive) (0) | 2020.03.03 |
MySQL 5.7 설치(windows 10 / installer 버전) (1) | 2020.03.02 |