call undefined mysql connect 에러 발생시 해결 방안

by ADMINPLAY posted Jun 04, 2009
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄
PHP 5.2.0 설치시 다음과 같은 에러메시지를 만나게 될 것입니다.

configure: error: Cannot find libmysqlclient_r under /usr/local/mysql.
Note that the MySQL client library is not bundled anymore!


위와 같은 에러가 나는 이유는 Apache 가 Thread 모드로 설치되어있으나, MySQL 은 Thread Safe 옵션을 주지 않았기 때문입니다.
이 경우에는 MySQL 을 컴파일할 때 다음 옵션을 줌으로서 해결할 수 있습니다.


--enable-thread-safe-client

Articles

1 2 3