error while loading shared libraries: libmysqlclient.so.10: cannot open shared object file: No such file or directory
리눅스/MySQL2015. 1. 16. 11:08
반응형
error while loading shared libraries: libmysqlclient.so.10: cannot open shared object file: No such file or directory
1. libmysqlclient.so.10 파일을 find로 찾아 라이브러리 패스에 추가
# vi /etc/profile
export LD_LIBRARY_PATH=/usr/local/mysql/lib/mysql:LD_LIBRARY_PATH
# rpm -ivh MySQL-shared-3.23.44-1.i386.rpm
symbol errno, version GLIBC_2.0 not defined in file libc.so.6 with link time reference
# vi /etc/profile
export LD_ASSUME_KERNEL=2.4.1
[출처] qreeko님의 블로그 | 큐리 (http://blog.naver.com/qreeko?Redirect=Log&logNo=100013663616)
-----------------------------------------------
error while loading shared libraries: libmysqlclient.so.10: wrong ELF class: ELFCLASS64
> 이 메세지는 libmysqlclient.so.10 파일은 있는데 64bit 용이여서 사용이 안된다는 뜻.
profile 은 사용할 계정마다 설정해주어야 합니다.
반응형
'리눅스 > MySQL' 카테고리의 다른 글
오라클 클라이언트(Oracle Client) 설치 (0) | 2015.01.16 |
---|---|
최대 동시접속자수 테스트 프로그램 (0) | 2015.01.16 |
zmanda를 사용한 쉬운 MySQL 백업과 복구 (증분백업 가능) (0) | 2015.01.16 |
[그누보드] mysql 4.0 이하에서 4.1 이상으로 서버이전후 로그인 안될때 (0) | 2015.01.16 |
[제로보드4] mysql 4.0 이하에서 4.1 이상으로 서버이전후 로그인 안될때 (0) | 2015.01.16 |
댓글()