이렇게 리스너 시작,정지,상태를 실행하면 아래처럼 나옵니다..
oracle $ lsnrctl status
lsnrctl: error while loading shared libraries: libskgxp8.so: cannot open shared object file: No such file or directory
해당파일은 아래경로에 잘 위치해있구요..
oracle$ find . -name "libskgxp8*"
./app/oracle/product/8.1.5/lib/libskgxp8.so
그래서 .profile 들어가보니..
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH;$ORACLE_HOME/lib:/usr/lib
이런식으로 설정도 되어 있구요.. 어떻게 해야 되는걸가요;;
|