91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

安裝oracle即時客戶端

發布時間:2020-07-14 04:47:56 來源:網絡 閱讀:780 作者:辣條香蕉 欄目:關系型數據庫

一、需求

    數據庫和應用沒在同一臺主機上,所以需要安裝oracle即時客戶端,也可以是oracle的客戶端。只不過客戶端比較龐大。

二、安裝oracle即時客戶端

下載Oracle即時客戶端程序包

http://www.oracle.com/technetwork/database/features/instant-client/index-097480.html

數據庫版本是11.2.0.3.0

Instant Client Package - Basic:

All files required to run OCI, OCCI, and JDBC-OCI applications

Image instantclient-basic-linux.x64-11.2.0.3.0.zip (60,331,694 bytes) (cksum - 3890813254)

oracle-instantclient11.2-basic-11.2.0.3.0-1.x86_64.rpm (59,492,344 bytes) (cksum - 3293107452) 

*Instant Client Package - SQL*Plus: Additional libraries and executable for running SQL*Plus with Instant Client

instantclient-sqlplus-linux.x64-11.2.0.3.0.zip (837,574 bytes) (cksum - 3996754029)

oracle-instantclient11.2-sqlplus-11.2.0.3.0-1.x86_64.rpm (831,586 bytes) (cksum - 2150224972)

*Instant Client Package - SDK:

Additional header files and an example makefile for developing Oracle applications with Instant Client

instantclient-sdk-linux.x64-11.2.0.3.0.zip (641,586 bytes) (cksum - 1205517808)

oracle-instantclient11.2-devel-11.2.0.3.0-1.x86_64.rpm (609,139 bytes) (cksum - 2701969031)

zip 或者 rpm 包選擇一種,系統是centos,天生兼容RHEL,所以選擇rpm格式的。

以64位為例,下載以下幾個文件:

oracle-instantclient11.2-basic-11.2.0.3.0-1.x86_64.rpm

oracle-instantclient11.2-sqlplus-11.2.0.3.0-1.x86_64.rpm

oracle-instantclient11.2-devel-11.2.0.3.0-1.x86_64.rpm

下載完以后裝上。 rpm -Uhv

[root@mpaydb tmp]# rm -f oracle-instantclient11.2-basic-11.2.0.3.0-1.x86_64.rpm 

ll -h 

total 71M 

-rw-r--r--  1 root root  57M Jun  9 09:39 oracle-instantclient11.2-basic-11.2.0.3.0-1.x86_64(1).rpm 

-rw-r--r--  1 root root 595K Jun  8 18:01 oracle-instantclient11.2-devel-11.2.0.3.0-1.x86_64.rpm 

-rw-r--r--  1 root root 813K Jun  8 18:01 oracle-instantclient11.2-sqlplus-11.2.0.3.0-1.x86_64.rpm 

drwxrwxr-x 13 1000 1000 4.0K Jun  8 17:11 tmp-2.0.6 

-rw-r--r--  1 root root  13M Apr 22 20:34 tmp-2.0.6.tar.gz 

[root@mpaydb tmp]# 

[root@mpaydb tmp]# rpm -Uhv oracle-instantclient11.2-basic-11.2.0.3.0-1.x86_64\(1\).rpm 

99%)########################################### [100%] 

[root@mpaydb tmp]# 

[root@mpaydb tmp]# rpm -Uhv oracle-instantclient11.2-devel-11.2.0.3.0-1.x86_64.rpm 

Preparing...                                                            (100%)#                                           (100%)##                                   99%)########################################### [100%] 

[root@mpaydb tmp]# 

[root@mpaydb tmp]# rpm -Uhv oracle-instantclient11.2-devel-11.2.0.3.0-1.x86_64.rpm sqlplus-11.2.0.3.0-1.x86_64.rpm 

Preparing...                                                            (100%)#                                           (100%)##    

(100%)########################################### [100%] 

[root@mpaydb tmp]# 

[root@mpaydb tmp]# rpm -qa|grep oracle 

oracle-instantclient11.2-basic-11.2.0.3.0-1.x86_64 

oracle-instantclient11.2-devel-11.2.0.3.0-1.x86_64 

oracle-instantclient11.2-sqlplus-11.2.0.3.0-1.x86_64 

[root@mpaydb client64]# pwd 

/usr/lib/oracle/11.2/client64 

[root@mpaydb client64]# cd bin/ 

[root@mpaydb bin]# 

[root@mpaydb bin]# ./sqlplus 

./sqlplus: error while loading shared libraries: libsqlplus.so: cannot open shared object file: No such file or directory 

[root@mpaydb bin]#

添加 Oracle libraries

[root@mpaydb tmp-2.0.6]# more /etc/ld.so.conf.d/oracle.conf 

/usr/lib/oracle/11.2/client64/lib 

[root@mpaydb tmp-2.0.6]#

[root@mpaydb bin]# ldconfig 

[root@mpaydb bin]# ./sqlplus 

SQL*Plus: Release 11.2.0.3.0 Production on Sun Jun 9 10:24:26 2013 

Copyright (c) 1982, 2011, Oracle.  All rights reserved. 

Enter user-name: 

ERROR: 

ORA-12162: TNS:net service name is incorrectly specified 

Enter user-name: ^C 

[root@mpaydb bin]#

測試一下:

[root@mpaydb oracle]# sqlplus tmp/111111@10.101.5.77/MOMORAC.momo.org 

SQL*Plus: Release 11.2.0.3.0 Production on Sun Jun 9 12:21:29 2013 

Copyright (c) 1982, 2011, Oracle.  All rights reserved. 

Connected to: 

Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - Production 

With the Partitioning, Real Application Clusters, Automatic Storage Management, Oracle Label Security, 

OLAP, Data Mining, Oracle Database Vault and Real Application Testing options 

SQL>


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

得荣县| 兴城市| 九江市| 华宁县| 海伦市| 巴南区| 获嘉县| 柳州市| 高台县| 新邵县| 布拖县| 叙永县| 延津县| 娄底市| 龙州县| 同江市| 农安县| 绥德县| 始兴县| 广灵县| 南漳县| 阿坝| 阿城市| 花垣县| 托克逊县| 夏邑县| 泾源县| 桦南县| 扬中市| 普格县| 应用必备| 兴安盟| 乐都县| 梨树县| 田东县| 东宁县| 望城县| 云和县| 肇源县| 瑞安市| 盐源县|