欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Linux Apache PHP Oracle 安装配置(具体操作步骤)

程序员文章站 2023-04-07 17:32:34
oracle 就不说了,linux 是 centos。1. 安装 httpd(apache)yum install httpd -y 2. 安装 php, php-gd,...

oracle 就不说了,linux 是 centos。
1. 安装 httpd(apache)
yum install httpd -y

2. 安装 php, php-gd, php-mcrypt, php-pecl*
yum install php php-gd php-mcrypt php-pecl* -y

3. 安装 oci8
pecl install oci8
安装时输入oracle安装目录

4.修改 httpd.conf
找到
user apache
group apache
改成系统中的用户,如:
user oracle
group oracle

5. 在/etc/php.d/下创建 oracle.ini 内容:
; enable oracle extension module
extension=oci8.so

6.修改 php(/etc/php.ini)的临时目录:
session.save_path = "/tmp/php"
并将 /tmp/php 的权限降到最低 chmod 777 /tmp/php

7.设置环境变量 .bash_profile
oracle_home=/opt/oracle/product/11.2.0/dbhome_1/
ld_library_path=/opt/oracle/product/11.2.0/dbhome_1/lib
tns_admin=/opt/oracle/product/11.2.0/dbhome_1/network/admin
oracle_sid=orcl
export oracle_home ld_library_path tns_admin oracle_sid

8.
chkconfig --level 3 httpd on
chkconfig --level 5 httpd on

9. reboot