1. 根據(jù)實(shí)際情況選擇版本,下載oracle客戶端壓縮包和sdk壓縮包
創(chuàng)新互聯(lián)建站專注于來(lái)安企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站,成都做商城網(wǎng)站。來(lái)安網(wǎng)站建設(shè)公司,為來(lái)安等地區(qū)提供建站服務(wù)。全流程按需制作網(wǎng)站,專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,創(chuàng)新互聯(lián)建站專業(yè)和態(tài)度為您提供的服務(wù)
http://www.oracle.com/technetwork/database/features/instant-client/index-097480.html
以下為 10.0.2 為例
2. 將client和sdk解壓到同一個(gè)目錄并放到操作系統(tǒng)的一個(gè)指定目錄 比如 /soft/instantclient_10_2
3. 執(zhí)行如下命令,將oracle環(huán)境變量加入到 profile
cat >>/etc/profile<
export NLS_DATE_FORMAT='yyyy-mm-dd hh34:mi:ss'
export PATH=\$PATH:/soft/instantclient_10_2
export TNS_ADMIN=/soft/instantclient_10_2
export LD_LIBRARY_PATH=/soft/instantclient_10_2
export NLS_LANG=\"AMERICAN_AMERICA.ZHS16GBK\"
export ORACLE_HOME=/soft/instantclient_10_2
EOF
4. 執(zhí)行如下命令 ,修改 oracle_client so文件權(quán)限,修改上下文安全
chcon -t texrel_shlib_t /data/soft/instantclient_10_2/*.so
chcon -t texrel_shlib_t /data/soft/instantclient_10_2/*.so.*
5. 讀取環(huán)境變量信息
source /etc/profile
6. 下載 oci8的壓縮包 并進(jìn)行編譯
http://pecl.php.net/package/oci8
# 指定php變量 或者在with-php-config 位置替換變量,指定 php-config目錄
PHP_DIR=php的安裝目錄
tar zxvf oci8-2.0.8.tar.gz
cd oci8-2.0.8
phpize
./configure \
--with-php-config=${PHP_DIR:?NULL}/bin/php-config \
--with-oci8=shared,instantclient,${ORACLE_HOME:?NULL}
make
make install
7. 修改 php.ini文件 增加
extension = "oci8.so"
8. 根據(jù)實(shí)際情況, 重啟 php 或者 apache
end