免费注册 查看新帖 |

Chinaunix

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

请教,有没有OR10G+APACHE2+PHP4的安装案例(付本人安装) [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-05-24 02:51 |只看该作者 |倒序浏览
搜索了好多天,只能做到如下.但我连接到数据库的时候中文部分出现???不知道是否是因为我把客户端单独安装的原因.由于是新手.所以请各位大大多多指教
第一个控制器 (/dev/sda) 上的 9GB 磁盘包含以下分区,用于存放所有 Linux 和 Oracle 软件:
100MB /boot 分区
2GB 交换分区 — 将此分区大小至少设置为系统 RAM 的两倍,但不要超过    2GB
2GB 交换分区 — 将此分区大小至少设置为系统 RAM 的两倍,但不要超过    2GB
10GB  /cgnet
10GB  /or
20GB  /sqldata

    o  只选择此处显示的程序包集,其他选项不要选。
    o  桌面
     - X Window 系统
     - Gnome
     - KDE
    o  应用程序
     - 编辑器
     - 图形因特网
    o  服务器
     - 不要选择该组中的任何选项。
    o  开发
     - 开发工具
    o  系统
     - 管理工具
    o  Red Hat Enterprise Linux
     - 不要选择该组中的任何选项。
    o  杂项
     - 原有软件开发
    o  单击 Next 继续操作。
       
检查所需安装包
rpm -q gcc make glibc binutils openmotif setarch compat-db compat-gcc-32 compat-gcc-32-c++ compat-libstdc++-33 compat-libstdc++-296

创建 Oracle 组和用户帐户
# /usr/sbin/groupadd oinstall
# /usr/sbin/groupadd dba
# /usr/sbin/useradd -m -g oinstall -G dba oracle
# id oracle
uid=501(oracle) gid=501(oinstall) groups=501(oinstall),502(dba)

设置 oracle 帐户的口令
# passwd oracle
Changing password for user oracle.
New password:
Retype new password:
passwd:all authentication tokens updated successfully.

创建目录
mkdir  /or/oracle   /or/oracle/product  /or/oracle/product/10.2.0
mkdir -p /data/oradata
chown -R oracleinstall /or/oracle /data/oradata
chmod -R 775 /or/oracle /data/oradata

配置 Linux 内核参数
vi /etc/sysctl.conf
加入
kernel.shmall = 2097152
kernel.shmmax = 1073741824
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
fs.file-max = 65536
net.ipv4.ip_local_port_range = 1024 65000
net.core.rmem_default=262144
net.core.wmem_default=262144
net.core.rmem_max=262144
net.core.wmem_max=262144
注意
kernel.shmmax = 2147483648
一般情况下可以设置最大共享内存为物理内存的一半,如果物理内存是 2G,则可以设置最大共享内存为 1073741824,如上;如物理内存是 1G,则可以设置最大共享内存为 512 * 1024 * 1024 = 536870912;以此类推。)
esc
:wq
激活
/sbin/sysctl -p
为了提高在linux系统上运行软件的性能,必须对oracle用户设置下列shell 限定。
vi /etc/security/limits.conf
加入
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536

oracle 用户的环境变量
su - oracle
vi .bash_profile
加入

export ORACLE_BASE=/or/oracle
export ORACLE_HOME=$ORACLE_BASE/product/10.2.0
export ORACLE_SID=cgnet
PATH=$PATHORACLE_HOME/bin:/usr/local/sbin:/usr/bin/X11:/usr/X11R6/bin
export PATH=$PATHHOME/bin:/bin:/sbin:/usr/bin
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/usr/lib:/usr/local/lib
NLS_LANG=$'SIMPLIFIED CHINESE_CHINA.ZHS16GBK'

注意
export ORACLE_SID=cgnet
(改为自己需要的SID名称,用英文)
激活
source /home/oracle/.bash_profile

安装 Oracle
解压缩oracle 10g安装盘
# unzip 10201_database_linux32.zip

用VNC进入oracle用户启动安装
runInstaller
??? J2EE ????????, ????????? URL ????

iSQL*Plus URL:
http://cgnet.8800.org:5560/isqlplus

iSQL*Plus DBA URL:
http://cgnet.8800.org:5560/isqlplus/dba

Enterprise Manager 10g Database Control URL:
http://cgnet.8800.org:1158/em
启动和停止 Oracle Enterprise Manager 数据库控制:
$ emctl start dbconsole
$ emctl stop dbconsole

启动和停止 iSQL*Plus:
$ isqlplusctl start
$ isqlplusctl stop
启动和停止监听器:
监听器接受客户端的连接请求,并在验证证书后创建数据库连接。要使用 OEM 或 iSQL*Plus,必须先启动监听器。
$ lsnrctl start
$ lsnrctl stop

[oracle@cgnet cgnet]$ su - oracle
Password:
[oracle@cgnet ~]$ sqlplus

SQL*Plus: Release 10.2.0.1.0 - Production on Sun May 20 16:20:50 2007

Copyright (c) 1982, 2005, Oracle.  All rights reserved.

Enter user-name: sys/sys as sysdba

Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options

SQL> alter user system account unlock;

User altered.

SQL> alter user scott account unlock;

User altered.

SQL>
Broadcast message from root (tty1) (Sun May 20 16:33:14 2007):

数据库创建完成后,修改/etc/oratab,把boss那一行最后的N改成Y,然后执行dbstart启动数据库数据库可能无法启动,
报告Can’t find init file …的错误,需要复制一个初始化文件:
cp /or/oracle/admin/cgnet/pfile/init.ora.* /or/oracle/product/10.2.0/dbs/initoradb.ora
重新执行dbstart就可以了。

在/etc/rc.d/rc.local中加入如下:
su - oracle -c "/or/oracle/product/10.2.0/bin/lsnrctl start"
su - oracle -c "/or/oracle/product/10.2.0/bin/dbstart start"
su - root -c "/usr/local/apache/bin/apachectl start"

装apache+php
#tar zxvf jpeg-6b.tar.gz

#cd jpeg-6b
#./configure --enable-static --enable-shared --prefix=/usr
#make
#make install-lib

  tar -zxvf libpng-1.2.8-config.tar.gz
  cd libpng-1.2.8-config
  cp scripts/makefile.std makefile
  make test
  make install

#tar zxvf zlib-1.2.1.tar.gz
#cd zlib-1.2.1
#./configure --shared
#make && make install

#tar zxvf freetype-2.1.5.tar.gz
#cd freetype-2.1.7
#./configure
#make
#make install

#tar zxvf gd-2.0.27.tar.gz
#cd gd-2.0.27
#./configure
#make && make install
#cp gd.h /usr/local/lib

openssl
#./config --prefix=/usr/local/openssl
#make
#make install



# tar zxvf httpd-2.0.49.tar.gz
# cd httpd-2.0.49
1# ./configure --prefix=/usr/local/apache --enable-module=so
2# ./configure --prefix=/usr/local/apache --enable-module=so --enable-ssl --enable-rewrite --enable-so --with-ssl=/usr/local/openssl
# make
# make install
# /usr/local/apache/bin/apachectl start

安装
rpm -Uvh oracle-instantclient-basic-10.1.0.4-1.i386.rpm
rpm -Uvh oracle-instantclient-devel-10.1.0.4-1.i386.rpm



# tar zxvf php-4.3.6.tar.gz
# cd php-4.3.6
#./configure --with-oci8-instant-client=/usr/lib/oracle/10.2.0.3/client/lib --with-apxs2=/usr/local/apache/bin/apxs --enable-sigchild --with-zlib-dir=/usr/local/lib --with-gd=/usr/local/lib --enable-sysvmsg --enable-sockets --enable-sysvshm --enable-sysvsem --enable-gd-native-ttf --with-ttf=/usr/lib --disable-debug --with-tiff-dir=/usr/lib  --with-jpeg-dir=/usr/local/lib --with-png-dir=/usr/local/lib --with-mysql --with-xml --with-gdbm-dir=/usr/lib --enable-ftp --enable-inline-optimization --with-gettext=/usr/lib --enable-magic-quotes --enable-safe-mode --enable-bcmath --enable-wddx --with-freetype-dir=/usr/local/lib --with-openssl=/usr/local/openssl

# make
# make install
# cp php.ini-dist /usr/local/lib/php.ini

修改httpd.conf
找到
DirectoryIndex index.html index.html.var
改为
DirectoryIndex index.php index.html index.html.var
找到
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
改为
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
AddType application/x-httpd-php .php
修改php.ini文件,全局注册变量改为开启
vi /usr/local/lib/php.ini
register_globals = On
建立测试文件
<?php
phpinfo();
?>
设置权限
Chomd –R 777 文件夹*

论坛徽章:
0
2 [报告]
发表于 2007-05-25 01:45 |只看该作者
没高手回答的
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP