Home > Database > Mysql Tutorial > WMware redhat 5 oracle 11g 安装方法

WMware redhat 5 oracle 11g 安装方法

WBOY
Release: 2016-06-07 17:55:52
Original
1207 people have browsed it

本文将详细介绍WMware中redhat 5 安装oracle 11g方法,需要的朋友可以参考下

1.安装Oracle11g所需要的补丁包,安装光盘上全有,进入光盘的Server目录:(最好通过oracle的官方文档来确定需要安装哪些包)
2.修改用户验证选项 修改/etc/pam.d/login文件加上如下参数 session required pam_limits.so
3.修改用户配置文件
修改/etc/profile文件加入如下参数:
if [ $USER = "oracle" ]; then
if [ $SHELL = "/bin/ksh" ]; then
ulimit -p 16384
ulimit -n 65536
else
ulimit -u 16384 -n 65536
fi
fi
4.安装目录配置
# mkdir -p /u01/
# chown -R oracle:oinstall /u01/
# chmod -R 775 /u01/
5. 修改用户bash shell
#su - oracle
$ vi .bash_profile
增加以下内容,注意:orcl为oracle数据库的实例名.
export ORACLE_BASE=/u01/app
export ORACLE_HOME=$ORACLE_BASE/oracle
export ORACLE_SID=orcl
export PATH=$ORACLE_HOME/bin:$PATH:$HOME/bin
6.安装oralce,把oracle安装文件从windows机器D盘上拷贝过来安装.(可以通过xmanager中的xftp来实现文件传输)
7.#mkdir/mnt/smb
#cd /mnt/smb
#cp linux_11gR2_database_1of2.zip /tmp
#cp linux_11gR2_database_2of2.zip /tmp
#cd /tmp
#unzip linux_11gR2_database_1of2.zip /tmp
#unzip linux_11gR2_database_2of2.zip /tmp
8.改用oracle用户登录Redhat5.5安装
9.$cd /tmp/database
改为1024*768分辨率
$./runInstaller
然后启动图形界面安装.
我的做完后运行dbca,在运行到EM出现了错误提示,"You needto run Netca to configure a listener before you can proceed.Otherwise you maychoose to continue without Database Control configuration"

只要运行了netca,命令就行了,然后按照他的要求进行点击下一步就行了。
1.安装Oracle11g所需要的补丁包,安装光盘上全有,进入光盘的Server目录:(最好通过oracle的官方文档来确定需要安装哪些包)
2.修改用户验证选项 修改/etc/pam.d/login文件加上如下参数
session required pam_limits.so
3.修改用户配置文件
修改/etc/profile文件加入如下参数:
if [ $USER = "oracle" ]; then
if [ $SHELL = "/bin/ksh" ]; then
ulimit -p 16384
ulimit -n 65536
else
ulimit -u 16384 -n 65536
fi
fi
4.安装目录配置
# mkdir -p /u01/
# chown -R oracle:oinstall /u01/
# chmod -R 775 /u01/
5. 修改用户bash shell
#su - oracle
$ vi .bash_profile
增加以下内容,注意:orcl为oracle数据库的实例名.
export ORACLE_BASE=/u01/app
export ORACLE_HOME=$ORACLE_BASE/oracle
export ORACLE_SID=orcl
export PATH=$ORACLE_HOME/bin:$PATH:$HOME/bin
6.安装oralce,把oracle安装文件从windows机器D盘上拷贝过来安装.(可以通过xmanager中的xftp来实现文件传输)
7.#mkdir/mnt/smb
#cd /mnt/smb
#cp linux_11gR2_database_1of2.zip /tmp
#cp linux_11gR2_database_2of2.zip /tmp
#cd /tmp
#unzip linux_11gR2_database_1of2.zip /tmp
#unzip linux_11gR2_database_2of2.zip /tmp
8.改用oracle用户登录Redhat5.5安装
9.$cd /tmp/database
改为1024*768分辨率
$./runInstaller
然后启动图形界面安装.
我的做完后运行dbca,在运行到EM出现了错误提示,"You needto run Netca to configure a listener before you can proceed.Otherwise you maychoose to continue without Database Control configuration"
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template