JooTC

Reading table information for completion of table 해결하기

Reading table information for completion of table


MySQL을 사용하여 데이터베이스를 전환하기 위해 USE 문을 사용하려고 하면 다음과 같이 에러 메세지가 출력되며 진행되지 않는 경우가 있습니다.

mysql> use mydatabase;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

 

 

해결 방법


이는 특정 테이블을 제대로 읽지 못해 MySQL의 기능 중 하나인 Auto-rehash를 활성화하는 데에 문제가 발생하여 나타나는 문제입니다.

MySQL을 실행할 때 -A 옵션을 붙여서 일시적으로 해결할 수 있습니다.

-A 옵션(–no-auto-rehash)을 붙이면 Auto-rehash를 비활성화하겠다는 의미입니다. 이는 테이블 이름이나 컬럼의 이름을 일부분만 작성한 뒤 TAB을 입력하여 자동 완성을 할 수 있는 기능입니다. 결국 테이블을 읽지 못하기 때문에 자동 완성에 문제가 발생한 것입니다.

 

Auto Rehash에 대한 Man 페이지 설명은 다음과 같습니다 :

Enable automatic rehashing. This option is on by default, which enables database, table, and column name completion. Use --disable-auto-rehash, --no-auto-rehash,  or --skip-auto-rehash to disable rehashing. That causes mysql to start faster, but you must issue the rehash command if you want to use name completion.

To complete a name, enter the first part and press Tab. If the name is unambiguous, mysql completes it. Otherwise, you can press Tab again to see the possible names that begin with what you have typed so far. Completion does not occur if there is no default database.

 

결과적으로 아래 명령어와 같이 MySQL을 실행해주면 됩니다. (사용자 이름은 root로 가정합니다.)

$ mysql -uroot -p -A
Password:

 

만약 위 옵션을 붙이지 않고 처음부터 Auto Rehash를 끄고 싶을 경우, MySQL 서버 설정 파일에서 no-auto-rehash 옵션을 추가하면 됩니다.

/etc/my.cnf (버전과 OS별로 다를 수 있습니다.)를 수정합니다. 아래 과정은 모두 root 권한으로 진행해야 합니다.

# vim /etc/my.cnf

[mysql] 항목 내에 아래 내용을 추가해주세요.

[mysql]
no-auto-rehash

이후 아래 명령어로 MySQL 서버의 서비스를 재시작합니다. 서버에 따라 mysqld 서비스가 없을 수 있으므로 이 때는 mysql로 시도해보아야 합니다.

# service mysqld restart (또는 systemctl restart mysqld)

 

마지막으로 문제가 발생한 테이블에 대해 검사를 진행한 후, 문제가 발생한 테이블을 복구해야 합니다. 복구 방법은 아래 포스트를 참고해주세요.

구독
알림
guest

0 Comments
Inline Feedbacks
모든 댓글 보기
0
이 포스트에 대한 의견을 남겨주세요!x