Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 게임
- 왕좌의게임
- 관광
- 영어 유머
- english study
- 영어유머
- 골든게이트
- MLBB
- 모바일레전드
- Chess-TD
- 롤
- 오큘러스
- 가볼만한곳
- 영어공부
- java program
- 체스-TD
- 독해연습
- 오라클
- 이솝우화
- 게임기
- Mobile Legends
- 영어독해
- Python
- 심플한 게임
- oracle
- 여행
- OGGMA
- Imba Auto Chess
- 임바 오토체스
- English Joke
- Today
- Total
Almost-Native
파이썬 에러 oracledb.exceptions.DatabaseError: DPI-1047: Cannot locate a 64-bit Oracle Client library 본문
Java 프로그램 개발, IT
파이썬 에러 oracledb.exceptions.DatabaseError: DPI-1047: Cannot locate a 64-bit Oracle Client library
2022. 6. 26. 00:14Oracle DB 에 접속하는 파이썬 프로그램을 실행시 아래와 같은 에러가 발생하는 경우,
$ /usr/bin/python3.9 aaa1.py
Traceback (most recent call last):
File "/home/oracle/Python1/aaa1.py", line 5, in <module>
oracledb.init_oracle_client()
File "src/oracledb/impl/thick/utils.pyx", line 478, in oracledb.thick_impl.init_oracle_client
File "src/oracledb/impl/thick/utils.pyx", line 400, in oracledb.thick_impl._raise_from_info
oracledb.exceptions.DatabaseError: DPI-1047: Cannot locate a 64-bit Oracle Client library: "libclntsh.so: cannot open shared object file: No such file or directory". See https://oracledb.readthedocs.io/en/latest/user_guide/installation.html for help
이건 python-oracledb 모듈을 이용하는 파이썬 프로그램에서 init_oracle_client() 실행하는 중에 Oracle Library 를 찾지 못해서 발생하는 에러입니다.
아래와 같이 설치되어 있는 오라클 환경변수를 제대로 세팅해주고 다시 실행하면 됩니다.
$ export ORACLE_HOME=/u02/app/oracle/product/19.12.0/dbhome_1
$
$ /usr/bin/python3.9 aaa1.py
=====> 2260
$
또다른 방법으로,
파이썬 프로그램에서 oracledb.init_oracle_client() 부분을 빼버리는 방법이 있습니다.
python-oracledb 모듈에 thin 모드와 thick 모드가 있는데, init_oracle_client() 호출하는 것은 thick 모드를 사용하는 것입니다. thick 모드는 설치된 오라클 모듈이 필요합니다.
반면, thin 모드에서는 설치된 오라클 모듈이 필요하지 않고, init_oracle_client() 호출도 할 필요가 없습니다.
참고▶ 파이썬 Oracle DB 연결 라이브러리 비교 (cx_Oracle, Thin oracledb, Thick oracledb)
'Java 프로그램 개발, IT' 카테고리의 다른 글
(오라클 PL/SQL 샘플) 세로 결과데이터를 가로로(한줄로) 출력하는 함수 (0) | 2022.07.08 |
---|---|
sed: -e expression #1, char 16: unknown option to `s' (DOS, UNIX 파일형식에 따른 에러) (0) | 2022.07.05 |
파이썬 프로그램에서 Oracle DB 로 DRCP(공유커넥션풀링) 적용 샘플 (0) | 2022.06.22 |
리눅스 nohup: redirecting stderr to stdout 경고메시지 제거방법 (0) | 2022.06.21 |
Oracle Goldengate 에러 (OGG-08100, ORA-01031 Error) (0) | 2022.06.19 |
Comments