체인의정석

Oracle & Oracle DB client 설치 문제 해결 본문

개발/database

Oracle & Oracle DB client 설치 문제 해결

체인의정석 2021. 8. 25. 18:49
728x90
반응형

 

차근차근 살펴본 결과 node-oracledb의 모듈을 체크해보라는 글을 발견했고

https://stackoverflow.com/questions/61153033/error-dpi-1047-cannot-locate-a-64-bit-oracle-client-library-in-nodejs

 

Error: DPI-1047: Cannot locate a 64-bit Oracle Client library in NodeJS

I recently need oracle db connectivity within my nodejs application. There is an official add-on node-oracledb powered by oracle. While integrating this add-on in my nodejs application, I'm having ...

stackoverflow.com

해당 모듈의 설명부분을 정독하고 나니 오라클 db의 버전과 oracle client의 버전을 맞춰야 지원이 된다는 것을 알았다.

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

 

Installing node-oracledb Version 5.2

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

oracle.github.io

버전을 21에서 18로 다시 받고 문서에 따라서 /usr/local/lib 으로 들어가서 open . 으로 파인더를 열고 넣으니 다음과 같은 메세지가 떴다.

파일을 통째로 옮기고 개인보호 설정에들어가서 모두 허용을 하나씩 눌러주어서 인식시키니 다른 에러가 나왔다.

https://support.clo3d.com/hc/ko/articles/115005385707--Mac-%ED%99%95%EC%9D%B8%EB%90%98%EC%A7%80-%EC%95%8A%EC%9D%80-%EA%B0%9C%EB%B0%9C%EC%9E%90%EC%9D%98-%EC%95%B1%EC%97%B4%EA%B8%B0-%ED%95%B4%EA%B2%B0-%EB%B0%A9%EB%B2%95

 

[Mac] "확인되지 않은 개발자의 앱열기" 해결 방법

Objective Mac에서 CLO 설치 혹은 업데이트 시 확인되지 않은 개발자의 앱 열기 대화창이 나타나는 문제를 해결합니다.   Operation Mac에서 CLO를 설치하거나 업데이트할 경우 하기와 같은 확인되지 않

support.clo3d.com

[ERROR] 2021-08-25T09:36:20.267Z Database Error: Error while trying to retrieve text for error ORA-01804

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

 

App crash down with "ExceptionImpl" error (Error while trying to retrieve text for error ORA-01804) · Issue #76 · oracle/node-

Hi everyone. NodeJS 0.10.36 OracleDB 0.4.2 So I tried to run next app: var oracledb = require( "oracledb" ); var dbConfig = { user : "userName", password : "secWord", ...

github.com

이 에러는 환경 변수 설정 문제였는데 더 급한 일이 생겨서 나중에 와서 이어서 해결하기로 하였다.

728x90
반응형
Comments