Heim >Backend-Entwicklung >PHP-Tutorial >CentOS下PHP安装Oracle扩展_php技巧

CentOS下PHP安装Oracle扩展_php技巧

WBOY
WBOYOriginal
2016-05-16 20:23:011514Durchsuche

环境

System:CentOS 6
PHP: 5.3.28

下载Oracle客户端

32位系统

64位系统

复制代码 代码如下:

oracle-instantclient-sqlplus-10.2.0.4-1.x86_64.rpm
oracle-instantclient-jdbc-10.2.0.4-1.x86_64.rpm
oracle-instantclient-devel-10.2.0.4-1.x86_64.rpm
oracle-instantclient-basic-10.2.0.4-1.x86_64.rpm

执行安装:

复制代码 代码如下:

# rpm -ivh *.rpm

下载Oracle的PHP扩展

官方下载

复制代码 代码如下:

wget http://pecl.php.net/get/oci8-2.0.7.tgz
# tar zxvf oci8-2.0.7.tgz
# cd oci8-2.0.7
# /usr/local/php/bin/phpize
# ./configure --with-php-config=/usr/local/php/bin/php-config --with-oci8=shared,instantclient,/usr/lib/oracle/10.2.0.4/client64/lib/
# make && make install

更改php.ini
复制代码 代码如下:

# vi /usr/local/php/etc/php.ini

增加 extension = "oci8.so"

重新启动PHP

复制代码 代码如下:

ps aux | grep php | grep root
kill -USER2 php_root_pid
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn