리눅스/mysql
세그멘테이션 오류
Rohin
2019. 4. 26. 15:08
반응형
mysql-5.6.10 버전 설치 이후에
아래와 같이 명령어를 입력하면 세그멘테이션 오류가 발생하였다..
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| test |
+--------------------+
4 rows in set (0.00 sec)
mysql> use test;
세그멘테이션 오류
해결방법
# cat /etc/sysconfig/i18n
#LANG="ko_KR.eucKR"
LANG="en_US.UTF-8"
기존내용을 주석처리하고 UTF-8로 언어셋 변경하니
세그멘테이션 오류가 발생하지않았다..
mysql> use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed