체인의정석

Database Error: DPI-1047: Cannot locate a 64-bit Oracle Client library 오류 해결기 , MAC / Node 환경 본문

개발/database

Database Error: DPI-1047: Cannot locate a 64-bit Oracle Client library 오류 해결기 , MAC / Node 환경

체인의정석 2021. 8. 20. 13:51
728x90
반응형

https://oracle.github.io/node-oracledb/INSTALL.html#instosx

 

Installing node-oracledb Version 5.2

Oracle Database driver for Node.js maintained by Oracle Corp.

oracle.github.io

 

오류 메세지

[ERROR] 2021-08-20T02:10:55.613Z Database Error: DPI-1047: Cannot locate a 64-bit Oracle Client library: "dlopen(libclntsh.dylib, 1): image not found". See https://oracle.github.io/node-oracledb/INSTALL.html for help
Node-oracledb installation instructions: https://oracle.github.io/node-oracledb/INSTALL.html
You must have the 64-bit Oracle Instant Client Basic or Basic Light package libraries in
/usr/local/lib or set by calling oracledb.initOracleClient({libDir: "/my/instant_client_directory"}).
Oracle Instant Client can be downloaded from https://www.oracle.com/database/technologies/instant-client/macos-intel-x86-downloads.html

 

상황, 프로그램을 돌리고 도커에 db, 로컬에 dbeaver 연결 이후 로컬의 서버에서 해당 oracle db를 사용하려고 실행, 그러나 위와 같은 오류 발생

 

아래 링크를 통해서 문제 해결을 하려고 시도함.

https://oracle.github.io/node-oracledb/INSTALL.html#instosx

 

Installing node-oracledb Version 5.2

Oracle Database driver for Node.js maintained by Oracle Corp.

oracle.github.io

설명 중 설치구문 

cd $HOME/Downloads
curl -O https://download.oracle.com/otn_software/mac/instantclient/198000/instantclient-basic-macos.x64-19.8.0.0.0dbru.dmg
hdiutil mount instantclient-basic-macos.x64-19.8.0.0.0dbru.dmg
/Volumes/instantclient-basic-macos.x64-19.8.0.0.0dbru/install_ic.sh
hdiutil unmount /Volumes/instantclient-basic-macos.x64-19.8.0.0.0dbru

다음과 같이 설치를 하고 나면 밑에 주의 문구가 하나 있는것을 볼 수 있다.

 

The Instant Client directory will be $HOME/Downloads/instantclient_19_8. Applications may not have access to the Downloads directory, so you should move Instant Client somewhere convenient.

 

다운로드 디렉토리에 있다면? 다운이 어려울 수도 있다는 점이다. 따라서 디렉토리를 오류메세지에 있는

/usr/local/lib 로 옮겨주었다.

 

다운로드 받은 폴더를 모두 옮겨주고 나도 오류가 해결되지 않았다.

 

https://devmoony.tistory.com/110

 

[MacOs] 맥북에서 도커(Docker)로 오라클(Oracle) 사용하기

맥북에서 도커(Docker) 활용해 오라클(Oracle) 사용하는 방법 이전 포스팅에 MacOS에 도커(Docker) 설치하는 방법을 설명하였습니다. 도커를 아직 설치하지 못하신 분들은 아래 포스팅을 참고하시면 됩

devmoony.tistory.com

위 블로글에서 시키는 대로 진행

 

로그인 정보는 아래와 같이 진행, 

docker run --name oracle -d -p 8080:8080 -p:1521:1521 jaspeen/oracle-xe-11g

그러나 여전히 에러, 내일 이어서 봐야겠다.

https://github.com/oracle/node-oracledb/issues/1244#issuecomment

 

DPI-1047: Cannot locate a 64-bit Oracle Client library: "dlopen(libclntsh.dylib, 1): image not found" · Issue #1244 · oracle/n

I follow the installation instructions do and still got this issue. I use macOS Catalina 10.15.4 DPI-1047: Cannot locate a 64-bit Oracle Client library: "dlopen(libclntsh.dylib, 1): image not ...

github.com

https://github.com/oracle/node-oracledb/issues/1239

 

ERROR: Cannot locate a 64-bit Oracle Client library: "dlopen(libclntsh.dylib, 1)" · Issue #1239 · oracle/node-oracledb

Hi everyone, I am trying to setup on the MacOS. I have followed every step according to the installation instructions, but I am getting the error: ERROR: Cannot locate a 64-bit Oracle Client librar...

github.com

https://yenaworldblog.wordpress.com/2021/03/31/docker-python-oracle-%EC%97%B0%EA%B2%B0/

 

docker python oracle 연결

윈도우나 맥에서 python 으로 oracle 연결 시에는 cx_oracle 패키지 설치 + oracle client 설치를 해야 한다. [mac 에서 연결] 위 사이트에서 아래 파일 다운로드 instantclient-basic-${version}-macosx-x64.zipinstantclient-s

yenaworldblog.wordpress.com

 

728x90
반응형
Comments