安装平台centos6.5 + oracle 11g

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安装平台centos6.5 + oracle 11g相关的知识,希望对你有一定的参考价值。

安装平台centos6.5  + oracle 11g
声明:本文为自己笔记整理,非完整安装步骤,仅供参考;;;;
步骤一:指定主机名和规划IP地址(需重启系统)
    主机名:xyhdb   修改#vim /etc/hosts文件  添加xyhdb xyhdb.xyh
    系统IP地址:ip 192.168.0.233/24  网关X.1 #setup


创建相关文件夹和oracle用户
groupadd oinstall
groupadd dba
useradd -g oinstall -G dba oracle
mkdir -p /u01/app
mkdir /u01/oradata
mkdir /u01/oraInventory
chown -R oracle:oinstall /u01/app/
chown -R oracle:oinstall /u01/oradata
chown -R oracle:oinstall /u01/oraInventory
chmod -R 775 /u01/app/
chmod -R 775 /u01/oradata
passwd oracle



================================================
添加环境变量:修改/home/oracle目录下的.bash_profile
export ORACLE_BASE=/u01/app
export ORACLE_HOME=$ORACLE_BASE/oracle/product/11.2/db_home
export PATH=$ORACLE_HOME/bin:$PATH
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
export ORACLE_SID=orcl



使用root账户修改参数
Add the following lines to the "/etc/security/limits.conf" file.
oracle              soft    nproc   2047
oracle              hard    nproc   16384
oracle              soft    nofile  4096
oracle              hard    nofile  65536
oracle              soft    stack   10240

==============================================================
使用oracle账户解压数据库文件
unzip p13390677_112040_Linux-x86-64_1of7.zip
unzip p13390677_112040_Linux-x86-64_2of7.zip
启动安装命令[[email protected] database]$ ./runInstaller
==============================================================
yum安装软件包
yum install gcc gcc-c++ libaio-devel compat-libstdc++ libstdc++-devel -y

rpm
rpm -ivh compat-libstdc++-33-3.2.3-69.el6.x86_64.rpm
rpm -ivh pdksh-5.2.14-30.x86_64.rpm


----------------------------------------------------------------------------------
其它相关命令:

dbca   创建数据库
netca    配置监听
lsnrctl status 查看监听状态

本文出自 “信诺” 博客,请务必保留此出处http://xinnuo.blog.51cto.com/4132978/1792182

以上是关于安装平台centos6.5 + oracle 11g的主要内容,如果未能解决你的问题,请参考以下文章

CentOS6.5下Oracle11.2安装

centos6.5安装oracle数据库详细

CentOS6.5 --安装orale 11g(下)

Centos6.5_64位系统下安装Oracle 11g

centos6.5下安装oracle11g

Centos6.5安装Oracle11.2.0.4 RAC(完整版)