惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - Franky
N
Netflix TechBlog - Medium
Google Online Security Blog
Google Online Security Blog
月光博客
月光博客
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
V
V2EX
腾讯CDC
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
M
MIT News - Artificial intelligence
Vercel News
Vercel News
The GitHub Blog
The GitHub Blog
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
Apple Machine Learning Research
Apple Machine Learning Research
aimingoo的专栏
aimingoo的专栏
博客园 - 三生石上(FineUI控件)
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
MongoDB | Blog
MongoDB | Blog
H
Help Net Security
The Cloudflare Blog
Blog — PlanetScale
Blog — PlanetScale
F
Full Disclosure
G
Google Developers Blog
罗磊的独立博客
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Y
Y Combinator Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
J
Java Code Geeks
A
About on SuperTechFans
IT之家
IT之家
大猫的无限游戏
大猫的无限游戏
S
SegmentFault 最新的问题
有赞技术团队
有赞技术团队
GbyAI
GbyAI
雷峰网
雷峰网
T
The Blog of Author Tim Ferriss
The Register - Security
The Register - Security
U
Unit 42
D
Docker
Martin Fowler
Martin Fowler
L
LINUX DO - 热门话题
NISL@THU
NISL@THU
阮一峰的网络日志
阮一峰的网络日志
C
Cybersecurity and Infrastructure Security Agency CISA
博客园_首页
Google DeepMind News
Google DeepMind News

博客园 - 大象怒怒

12个球称三次的问题 电脑嘀嘀响的原因(电脑变慢) javascript的调试工具 PHP 怎样取得本地化时间 PHP 解析xml(包含非英文字符) PHP5+apache_2.0.50+MySQL4.0+SQLServer安装方法 - 大象怒怒 - 博客园 About SAPLogon(SAP登录 密码不能输入) XP下安装SQL2000企业版 游戏代码部分-------client包(MyClient类和ReadThread类) 游戏代码部分-------server包(MyServer类和ReadThread类) 会计关键术语(全) SQL 新增/修改 表字段列的类型等 电压表.ASM 交换机MAC地址表的形成过程动态演示 会计部分关键术语3 会计部分关键术语2 更改表字段的描述 SQL语句实现 vb 对注册表操作 会计部分关键术语1
Linux下配置PHP运行环境 安装Oracle(粗略写了下)
大象怒怒 · 2006-06-14 · via 博客园 - 大象怒怒

Linux下配置PHP运行环境

oracle-xe-univ-10.2.0.1-1.0.i386.rpm

apache_1.3.36.tar.gz

libxml2-2.6.11.tar.gz

php-5.1.4.tar.gz

下载,下面是安装详细过程

安装Oracle Database 10g Express Edition

Oracle最好用root帐户安装(oracle-xe-univ-10.2.0.1-1.0.i386.rpm)

# rpm -ivh oracle-xe-univ-10.2.0.1-1.0.i386.rpm

安装结束后进行配置

# /etc/init.d/oracle-xe configure

然后按照提示进行设置

编辑root用户的root/.bash_profile

ORACLE_HOME="/usr/lib/oracle/xe/app/oracle/product/10.2.0/server"

export ORACLE_HOME

安装apache

(apache_1.3.36.tar.gz)

#tar -xvf apache_1.3.36.tar.gz

#cd apache_1.3.36
#./configure

#--prefix=/usr/local/apache

#--enable-module =so

#make
#make install

首先安装libxml2-2.6.11

#tar -xvf libxml2-2.6.11.tar.gz

#cd libxml2-2.6.11

#./configure

#--prefix=/usr/local/libxml2

#make

#make install

安装PHP-5.1.4

#./configure \

#--prefix=/usr/local/php \

--with-apxs=/usr/local/apache/bin/apxs \

--with-oci8= /usr/lib/oracle/xe/app/oracle/product/10.2.0/server \

--with-config-file-path=/usr/local/apache/conf \

--with-libxml-dir=/usr/local/libxml2 \

--enable-sigchild \

--enable-mbstring \

-- enable-mbregex \

--enable-zend-multibyte

#make

#make install

编辑apache配置文件
#AddType application/x-tar .tgz 
下加一行 AddType application/x-httpd-php .php
#LoadModule php5_module modules/libphp5.so前的#去掉

指到DocumentRoot "/usr/local/apache2/htdocs", "/usr/local/apache2/htdocs"改为用户存放网页的地方
其他配置按要求即可

http://www.oracle.com/technology/tech/php/htdocs/inst_php_apache_linux.html
http://download-west.oracle.com/docs/cd/B25329_01/doc/install.102/b25144/toc.htm#CIHHJEHF