728x90
증상 : GCC 빌드 시 makefile에 LDFLAGS -lmysqlclient 추가 후 빌드 완료
모듈을 수행하면 다음 에러 발생
error while loading shared libraries: libmysqlclient.so.18: cannot open shared object file: No such file or directory
원인: LD_LIBRARY_PATH에 해당 libmysqlclient 의 경로가 없을때 발생
해결: export LD_LIBRARY_PATH=/usr/local/mysql/lib/
.bash_profile 에 LD_LIBRARY_PATH 경로 추가
vi /root/.bash_profile
bash_profile 에 LD_LIBRARY_PATH 경로 추가
vi /root/.bash_profile
728x90
'프로그래밍' 카테고리의 다른 글
[ubuntu][ulimit] bash: ulimit: open files: cannot modify limit: Operation not permitted (0) | 2022.05.13 |
---|---|
[정보] C++ SIGCHLD, waitpid()에 관해서 (0) | 2021.11.26 |
linux 프로그램 실행 에러 (0) | 2013.06.24 |
strrncmp 함수 (0) | 2013.06.03 |
popen() – execute shell command from C/C++ (0) | 2013.05.08 |
댓글