일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 프록시배포구조
- multicall
- ambiguous function description
- 머신러닝기초
- 컨트렉트 동일한 함수이름 호출
- nest.js설명
- 스마트 컨트렉트 함수이름 중복
- ethers websocket
- 러스트기초
- 스마트컨트렉트테스트
- 스마트컨트렉트 예약어 함수이름 중복
- 스마트컨트렉트 함수이름 중복 호출
- chainlink 설명
- 컨트렉트 배포 자동화
- ethers v6
- rust 기초
- ethers
- git rebase
- 러스트 기초
- ethers type
- 깃허브명령어
- Vue
- 체인의정석
- ethers typescript
- vue기초
- Vue.js
- 러스트 기초 학습
- 스마트컨트렉트프록시
- nestjs 튜토리얼
- SBT표준
- Today
- Total
체인의정석
Database Error: DPI-1047: Cannot locate a 64-bit Oracle Client library 오류 해결기 , MAC / Node 환경 본문
Database Error: DPI-1047: Cannot locate a 64-bit Oracle Client library 오류 해결기 , MAC / Node 환경
체인의정석 2021. 8. 20. 13:51https://oracle.github.io/node-oracledb/INSTALL.html#instosx
오류 메세지
[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
설명 중 설치구문
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
위 블로글에서 시키는 대로 진행
로그인 정보는 아래와 같이 진행,
docker run --name oracle -d -p 8080:8080 -p:1521:1521 jaspeen/oracle-xe-11g
그러나 여전히 에러, 내일 이어서 봐야겠다.
https://github.com/oracle/node-oracledb/issues/1244#issuecomment
https://github.com/oracle/node-oracledb/issues/1239
https://yenaworldblog.wordpress.com/2021/03/31/docker-python-oracle-%EC%97%B0%EA%B2%B0/
'개발 > database' 카테고리의 다른 글
ORA-65096: invalid common user or role name (0) | 2021.08.23 |
---|---|
Oracle DB 테이블 구조와 DBeaver 연결 (0) | 2021.08.20 |
PostgreSQL와 DBeaver 연결하고 utf-8 체크 (0) | 2021.08.17 |
Mssql DBeaver연결 후 utf-8 적용 테스트 (0) | 2021.08.17 |
Mysql, Oracle DBeaver 연결 후 utf8 확인 (0) | 2021.08.17 |