oracle 静默安装

下载oracle的安装包:

下载地址:

注意下载oracle是需要注册oracle的

http://download.oracle.com/otn/nt/oracle11g

下载两个包:

linux.x64_11gR2_database_1of2.zip  

linux.x64_11gR2_database_2of2.zip

1、上传:到服务器:

mkdir -p /usr/local/oracle

cd /usr/local/oracle

将两个包放在环境中:

unzip linux.x64_11gR2_database_1of2.zip  

unzip linux.x64_11gR2_database_2of2.zip

2、准备oracle的安装目标目录

mkdir –p /opt/oracle

3、创建oracle相关用户和用户组

groupadd dba

groupadd oinstall

useradd -g oinstall -G dba oracle

passwd oracle

输入密码:

修改安装目录权限:

chown –R oracle:oinstall /opt/oracle

4,挂载安装载:

上传安装盘到服务器:

安装盘名称:RHEL_5.6x86_64.iso

挂载目录:/home/os

mkdir -p /home/os

mount -o loop -t iso9660 RHEL_5.6x86_64.iso os

cd os/Server

5,安装所需要基本编译工具:

[[email protected] oracle]#rpm -ivh kernel-headers-

[[email protected] oracle]#rpm -ivh glibc-headers-

[[email protected] oracle]#rpm -ivh glibc-devel-

[[email protected] oracle]#rpm -ivh libgomp-

[[email protected] oracle]#rpm -ivh sysstat-

[[email protected] oracle]#rpm -ivh libaio-devel-

[[email protected] oracle]#rpm -ivh libstdc++-devel-

[[email protected] oracle]#rpm -ivh unixODBC-

[[email protected] oracle]#rpm -ivh unixODBC-devel

[[email protected] oracle]#rpm -ivh gcc-

[[email protected] oracle]#rpm -ivh gcc-c++-

[[email protected] oracle]#rpm -ivh elfutils-libelf-devel- elfutils-libelf-devel-static-

6,设置修改核参数:

打开 /etc/sysctl.conf,在最后加入以下内容

kernel.shmmni = 4096

kernel.sem = 250 32000 100 128

net.core.rmem_default = 4194304

net.core.rmem_max = 4194304

net.core.wmem_default = 262144

fs.file-max = 6815744

net.ipv4.ip_local_port_range = 9000 65500

net.core.wmem_max = 1048576

fs.aio-max-nr = 1048576

使其生效:

 sysctl -p

7,修改 /etc/security/limits.conf,oracle 用户登陆的限制参数:在最后加入以下内容

oracle soft nproc 2047

oracle hard nproc 16384

oracle soft nofile 1024

oracle hard nofile 65536

8,修改系统环境变量/etc/profile

修改环境变量/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

9:设置ORACLE环境变量

export ORACLE_SID=orcl

export ORACLE_BASE=/opt/oracle/app

export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/dbhome_1

export PATH=$PATH:$HOME/bin:$ORACLE_HOME/bin

export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/usr/lib

10:修改用户登陆环境变量   .bashrc 

export ORACLE_SID=orcl

export ORACLE_BASE=/opt/oracle/app

export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/dbhome_1

export PATH=$PATH:$HOME/bin:$ORACLE_HOME/bin

export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/usr/lib

11:执行安装

安装第一步:

su - oracle

cd /usr/local/oracle/database

请下载db.rsp  到家目录  /home/oracle下,然后执行

 ./runInstaller -silent -noconfig -ignorePrereq -responseFile     /home/oracle/db.rsp

执行 

查看安装过程

可以到/home/oracle/oraInventory/logs 目录下查看安装进度。

tail -100f installActions2014-09-03_10-36-42AM.log 

3)安装成功提示执行脚本

到最后提示:

/opt/app/oracle/oraInventory/orainstRoot.sh

/opt/app/oracle/product/11.2.0/db_1/root.sh

To execute the configuration scripts:

1. Open a terminal window

2. Log in as "root"

3. Run the scripts

4. Return to this window and hit "Enter" key to continue

Successfully Setup Software.

时间: 2024-09-30 20:07:10

oracle 静默安装的相关文章

oracle静默安装中遇到的那些坑

Oracle静默安装,是一种高效.便捷的安装方法.很多时候我们在服务器上安装oracle,只有终端环境,用不了OUI(即图形界面)的安装方式,只能采用静默安装.静默安装的教程实例在网上很多地方都能找得到,但是在静默安装时总能碰到一些莫名其妙的坑,这时候再去找解决方案费时费力.笔者将自己几次在运用静默安装部署oracle期间遇见的比较常见的问题以及解决方案记录下来,希望能为有需要的读者提供一点帮助,也希望能有更多的朋友一起交流学习. 零号坑:静默安装中缺少某些包 解决方法:在静默安装前,先运行 r

Oracle静默安装

测试CentOS 6.5_x64下静默安装Oracle 11g R2数据库 [一.下载地址] http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html Oracle 11g 联机文档: http://www.oracle.com/pls/db112/homepage [二.系统要求] 内存:1G(官方最低要求1G) 硬盘:40G(企业版安装所需4.29G和1.7G数据文件) 检查的命令 内

oracle静默安装文件db_install.rsp详解

db_install.rsp详解 #################################################################### ## Copyright(c) Oracle Corporation1998,2008. All rights reserved.           ## ## Specify values for the variables listedbelow to customize your installation.   ##

linux下oracle静默安装---亲测可以安装

1.安装包yum  install   -y           yum installyum  install   -y           binutilsyum  install   -y           compat-libstdc++-33yum  install   -y           elfutils-libelfyum  install   -y           elfutils-libelf-develyum  install   -y           exp

Oracle静默安装-简单记录

一.与图形界面安装一样,检查如下条件:新建用户.组创建安装目录配置环境变量检查安装依赖包修改内核参数……前面这些操作都属于常规操作,不管是图形还是静默都需要处理. 二./home/oracle/database/response下有有enterprise.rsp.standard.rsp和custom.rsp三个应答文件,分别对应企业版.标准版和定制的安装.1.编辑文件:enterprise.rsp主要修改如下选项:oracle.install.option=INSTALL_DB_SWONLY

linux 之oracle静默安装

一.安装前准备工作1.修改主机名#vi /etc/hosts   //并添加内网IP地址对应的hostname,如下127.0.0.1           localhost::1                   localhost localhost.localdomain localhost6 localhost6.localdomain6192.168.8.151          linux-test 2.修改standby数据库的/etc/sysconfig/iptables文件,

Oracle 静默安装11gr2 已验证过,可以直接安装

操作系统及Oracle版本 linux版本:SUSE Linux Enterprise Server 11 (x86_64) Oracle 版本:Release 11.2.0.3.0 1.检查依赖包是否安装成功 .如果没有安装成功,请安装完. rpm -q binutils compat-libstdc++-33 elfutils-libelf elfutils-libelf-devel gcc gcc-c++ glibc glibc-common glibc-devel glibc-heade

Oracle 静默安装cadb错误 TNS-12547: TNS:lost contact

使用克隆安装oracle 11g 以后,然后使用cadb建库报错:ORA-12547: TNS:lost contact 对于这么一个不明显的错误,实在很难定位确认问题,网上给了很多建议: 1.缺包,libiao.ksh等 2.配置文件错误 3.环境变量不对 4.Oracle目录权限不对 5.$ORACLE_HOME/bin/oracle文件权限或文件大小不对 针对以上问题做了比较认真的检查,都没有发现问题所在. 同时使用strace对执行sqlplus / as sysdba进行了跟踪,没有发

oracle 静默安装、删除实例

2015-11-20 删除实例 #1.关闭数据库 SQL> shutdown abort; #2.删除实例数据文件和dump文件 [[email protected] ~]$find $ORACLE_BASE/ -name $ORACLE_SID -exec rmdir -rf * {} \; [[email protected] ~]$find $ORACLE_BASE/ -name $ORACLE_SID -exec rm -rf * {} \; #3.删除其他配置文件 [[email pr