error while loading shared libraries: libmysqlclient.so.10: cannot open shared object file: No such file or directory

리눅스/MySQL|2015. 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
2. 라이브러리가 설치되어 있지 않다면 Mysql Shared-library 설치. (http://downloads.mysql.com/archives.php)
# 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 은 사용할 계정마다 설정해주어야 합니다.

반응형

댓글()