프린트 하기

내맘대로긍정이 알려주는

Oracle 23ai 신기능
무료 세미나 발표자료

다운로드 trending_flat

OS환경 : Oracle Linux 8.6 (64bit)

 

DB 환경 : Oracle Database 19.15.0.0

 

에러 : libnsl.so.1: cannot open shared object file: No such file or directory

linux 8 에서 19c 설치시 발생한 에러 메세지

1
2
3
4
$ cd $ORACLE_HOME
$ ./runInstaller 
/oracle/app/oracle/product/19c/perl/bin/perl: error while loading shared libraries: 
libnsl.so.1: cannot open shared object file: No such file or directory

 

 

해결 방법 : libnsl 패키지 추가 설치

패키지 설치

1
2
3
4
# dnf install -y libnsl
# dnf install -y libnsl.i686
# dnf install -y libnsl2
# dnf install -y libnsl2.i686

 

 

runInstaller 재실행

1
2
3
$ cd $ORACLE_HOME
$ ./runInstaller 
(정상실행)

 

 

원인 : linux 8에선 libnsl 패키지를 설치해줘야함

linux 8에선 libnsl 패키지를 설치해줘야함

 

 

참조 : https://anuragkumarjoy.blogspot.com/2020/04/oracle-19c-installation-on-linux-8.html