共计 1760 个字符,预计需要花费 5 分钟才能阅读完成。
简单说说 Ubuntu 上搭建 PHP+Oracle 客户端,仅供参考。
[环境]
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 10.04.3 LTS
Release: 10.04
Codename: lucid
[步骤]
更新
#sudo apt-get update; sudo apt-get upgrade
添加所需的包
#sudo apt-get install php5-dev build-essential php-pear libaio1
装 unzip:
#sudo apt-get install unzip
下载 Instant Client
按照 oracle 官方网站的要求 http://www.oracle.com/technology/tech/oci/instantclient/index.html
理论:basic-lit 和 sdk 就可以,为保险:下载 basic 和 sdk 两个包。
正式开始:
设立目录,解压缩:
#sudo mkdir /opt/oracle
#sudo cp ~/*.zip /opt/oracle
#cd /opt/oracle
#sudo unzip ./*.zip
#sudo mv instantclient_11_1 instantclient
设置 instantclient:
#sudo ln –s libclntsh.so.11.1 libclntsh.so
#sudo ln –s libocci.so.11.1 libocci.so
#export ORACLE_HOME=/opt/oracle/instantclient
添加 lib 库位置:
#cd /etc/ld.so.conf.d
#sudo nano liboci.conf // 添加一行:/opt/oracle/instantclient
#sudo ldconfig
准备 OCI8 库:
#sudo mkdir /tmp/src
#cd /tmp/src
#sudo pecl download oci8
#sudo tar vzxf oci8-1.3.5.tgz // 我下载的版本是 135
#cd oci8-1.3.5
编译 OCI8:
#sudo phpize // 比较容易出错的地方,如果报错,你可能没有安装 php5-dev 包
#sudo ./configure –with-oci8=share,instantclient,$ORACLE_HOME
#sudo make; sudo make install
设置 php5 支持:
正常情况下编译完成后会有提示:Installing shared extensions: /usr/lib/php5/20060613/
到此目录下确认是否存在 oci8.so
#cd /etc/php5/conf.d
#sudo nano oci8.ini // 添加一行:extension=oci8.so
[结尾]
重起 apache
phpinfo()
可看到 oci8。
结合连接 oracle 代码,可验证成功。
CentOS 6.3 安装 LNMP (PHP 5.4,MyySQL5.6) http://www.linuxidc.com/Linux/2013-04/82069.htm
在部署 LNMP 的时候遇到 Nginx 启动失败的 2 个问题 http://www.linuxidc.com/Linux/2013-03/81120.htm
Ubuntu 安装 Nginx php5-fpm MySQL(LNMP 环境搭建) http://www.linuxidc.com/Linux/2012-10/72458.htm
《细说 PHP》高清扫描 PDF+ 光盘源码 + 全套教学视频 http://www.linuxidc.com/Linux/2014-03/97536.htm
CentOS 6 中配置 PHP 的 LNMP 的开发环境 http://www.linuxidc.com/Linux/2013-12/93869.htm
PHP 的详细介绍:请点这里
PHP 的下载地址:请点这里
更多 Oracle 相关信息见Oracle 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=12
更多 Ubuntu 相关信息见Ubuntu 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=2