Mysql 5.2
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
'Mysql' 카테고리의 다른 글
mysql 기본 명령어 및 수정 (0) | 2015.12.11 |
---|---|
mysql 패스워드 복구방법 (0) | 2015.12.01 |
mysql 외부접근 허용 (0) | 2015.10.07 |
mysql 백업 및 복구 (0) | 2015.10.07 |
my sql 초기 비밀번호 설정 (0) | 2015.05.20 |