您好,登錄后才能下訂單哦!
1. 根據實際情況選擇版本,下載oracle客戶端壓縮包和sdk壓縮包
http://www.oracle.com/technetwork/database/features/instant-client/index-097480.html
以下為 10.0.2 為例
2. 將client和sdk解壓到同一個目錄并放到操作系統的一個指定目錄 比如 /soft/instantclient_10_2
3. 執行如下命令,將oracle環境變量加入到 profile
cat >>/etc/profile<<EOF
#_php_oci_instantclient
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. 執行如下命令 ,修改 oracle_client so文件權限,修改上下文安全
chcon -t texrel_shlib_t /data/soft/instantclient_10_2/*.so
chcon -t texrel_shlib_t /data/soft/instantclient_10_2/*.so.*
5. 讀取環境變量信息
source /etc/profile
6. 下載 oci8的壓縮包 并進行編譯
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. 根據實際情況, 重啟 php 或者 apache
end
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。