免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1076 | 回复: 0
打印 上一主题 下一主题

在 linux 上安装 apache+php 连接 oracle10g [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-02-24 18:17 |只看该作者 |倒序浏览
原创文章, 当然, 参考了其它人的文章, 以及 oracle.com 上的安装说明。

所用软件:
linux AS 4
oracle-instantclient-basic-10.1.0.4-1.i386.rpm
oracle-instantclient-devel-10.1.0.4-1.i386.rpm
php 4.4.2
httpd-2.2.0.tar.gz  或 httpd-2.0.55.tar.gz

oracle 版本是 10.1.0.3


真正成功安装, 连接成功!

gd库的安装
--------------------------------------------------------------------------------
安装freetype
tar zxvf freetype-2.1.10.tar.gz
./configure
make && make install
:安装zlib
tar -zxvf zlib-1.2.3.tar.gz
cd zlib.1.2.3
./configure
make && make install
:安装libpng
tar -zxvf libpng-1.2.8-config.tar.gz
cd libpng-1.2.8-config
cp scripts/makefile.std makefile
make test
make install
:安装jpeg
tar -zxvf jpegsrc.v6b.tar.gz
cd jpeg-6b
./configure --enable-share --enable-static
make; make install
:安装GD
tar -zxvf gd-2.0.33.tar.gz
cd gd-2.0.33
./configure --prefix=/usr/local/gd --with-jpeg --with-png --with-zlib --with-freetype=/usr/local/freetype/lib
make && make install
编译jpeg时报错
/usr/bin/install -c -m 644 ./cjpeg.1
/usr/local/man/man1/cjpeg.1
/usr/bin/install: cannot create regular file
`/usr/local/man/man1/cjpeg.1': No such file or directory
缺少/usr/local/man目录及man1子目录,新建后重新编译。
shell> mkdir /usr/local/man
shell> mkdir /usr/local/man/man1
=====================================================================================================
安装apache
先把 httpd-2.2.0.tar.gz 上传到 /root
cd
tar zxvf httpd-2.2.0.tar.gz
cd httpd-2.2.0
./configure --prefix=/usr/local/apache2        
make && make install
===================================================================================================
在 Linux 上启用 PHP OCI8 扩展
从 OTN 上的 Instant Client 页面下载 Basic 和 SDK Instant Client 程序包。这两个 RPM 的总大小大约为 30MB。
以 root 用户的身份安装 RPM。
rpm -Uvh oracle-instantclient-basic-10.1.0.4-1.i386.rpm
rpm -Uvh oracle-instantclient-devel-10.1.0.4-1.i386.rpm
第一个 RPM 将 Oracle 库置于 /usr/lib/oracle/10.1.0.4/client/lib 中,第二个 RPM 在 /usr/include/oracle/10.1.0.4/client 中创建头 (header)。
===================================================================================================
安装php
先把 php-4.4.2.tar.gz 上传到 /root
cd
tar zxvf php-4.4.2.tar.gz
cd php-4.4.2
./configure --prefix=/usr/local/php  --with-config-file-path=/usr/local/php/etc --with-oci8-instant-client=/usr/lib/oracle/10.1.0.4/client/lib  --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --with-gd --with-zlib --with-png --with-jpeg --with-freetype --enable-gd-native-ttf --with-ttf
make && make install
cp php.ini-dist /usr/local/php/etc/php.ini

在 http.conf 末添加
LoadModule php4_module modules/libphp4.so
AddType application/x-httpd-php .php
AddType application/x-httpd-php .phtml
AddType application/x-httpd-php-source .phps

把 DocumentRoot "/usr/local/apache2/htdocs" 改成 DocumentRoot "你的目录" ,  改成

写一个文件 test.php
phpinfo();
?>
如果里面有 oci8 的信息,则表示安装成功!

以上是通过 instantclient 连接,但是如果是连接本机上的 oracle ,按照 oracle.com 的说明, 应该可以不用 instantclient ,而是用安装 oracle 时本身自带的库来连接的, 但是我试了几次都连接不上, 只好放弃了。有空再研究研究




本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/12869/showart_78189.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP