查询异常: (cx_Oracle.DatabaseError) DPI-1047: Cannot locate a 64-bit Oracle Client library: "libclntsh.so: cannot open shared object file: No such file or directory"

官网解决方案:

下载:https://www.oracle.com/database/technologies/instant-client/linux-x86-64-downloads.html

mkdir -p /opt/oracle
cd /opt/oracle
unzip instantclient-basic-linux.x64-21.1.0.0.0.zip
sudo yum install libaio
sudo sh -c "echo /opt/oracle/instantclient_21_1 > /etc/ld.so.conf.d/oracle-instantclient.conf"
sudo ldconfig
export LD_LIBRARY_PATH=/opt/oracle/instantclient_21_1:$LD_LIBRARY_PATH
posted @ 2024-01-22 10:53  Fmaj-7  阅读(41)  评论(0编辑  收藏  举报