oracle安装

静默安装

oracle 11gR2

1、数据库安装环境准备

1)编辑/etc/sysctl.conf

fs.aio-max-nr = 1048576
fs.file-max = 6815744
kernel.sem = 250 32000 100 128
net.ipv4.ip_local_port_range = 9000 65500
net.core.rmem_default = 262144
net.core.rmem_max = 4194304
net.core.wmem_default = 262144
net.core.wmem_max = 1048586

Enter the following command to change the current values of the kernel parameters:

# /sbin/sysctl -p

2)编辑/etc/security/limits.conf

oracle soft nproc 2048
oracle hard nproc 16384
oracle soft nofile 2048
oracle hard nofile 65536

修改登录模块请求文件,以上更改才会生效,用root操作
vi /etc/pam.d/login
于文件结尾添加如下信息
session    required    /lib64/security/pam_limits.so
session    required    pam_limits.so
3)创建oracle用户,组

groupadd install;

groupadd dba;

useradd -g oinstall -G dba oracle

passwd oracle

4) oracle相关 环境变量设置

.bash_profile文件中加入如下内容:

umask 022

export ORACLE_SID=orcl
export ORACLE_BASE=/opt/app/oracle
export ORACLE_HOME=$ORACLE_BASE/product/11.2/db_1

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

保存后使环境变量生效。

. .bash_profile

5)创建安装目录

# mkdir -p /u01/app

# chown -R oracle:oinstall /u01/app

# chmod -R 755 /u01/app

创建需要的用户和用户组:
使用root用户执行:
/usr/sbin/groupadd -g 501 oinstall
/usr/sbin/groupadd -g 502 dba
/usr/sbin/groupadd -g 503 oper
/usr/sbin/groupadd -g 504 asmadmin
/usr/sbin/groupadd -g 505 asmoper
/usr/sbin/groupadd -g 506 asmdba
/usr/sbin/useradd -g oinstall -G dba,asmdba,oper oracle
/usr/sbin/useradd -g oinstall -G asmadmin,asmdba,asmoper,oper,dba grid
mkdir -p /u01/app/oracle/product/11.2.0/dbhome_1
mkdir -p /u01/app/oracle/grid/product/11.2.0/grid
chown -R oracle:oinstall /u01/app/
chown -R grid:oinstall /u01/app/grid
chomod -R 775 /u01

 

使用命令 yum install -y 'package name' 安装所缺的程序包,pdksh包除外。注 意:要用yum安装32 bit的程序包,可先修改 vi /etc/yum.conf,添加一行:multilib_policy=all。oracle在检查环境的时候会要求安装i386,但CentOS 6.4光盘中32 bit的程序包都是i686,其实都一样,忽略这个差异问题应该不大(见下边的安装部分)

安装pdksh包(该程序包未被纳入CentOS的安装盘中):

使用命令:wget ftp://rpmfind.net/linux/centos/5.9/os/x86_64/CentOS/pdksh-5.2.14-37.el5_8.1.x86_64.rpm 将pdksh程序包下载到本地

使用命令 rpm -ivh pdksh-5.2.14-37.el5_8.1.x86_64.rpm 进行安装(注意:该程序包与ksh冲突,如果已经安装ksh,建议使用命令 rpm -e ksh-* 卸载)

 

2、准备静默安装响应文件

1)利用图形化界面生成rsp文件

运行到oracle 安装目录下

./runInstaller &

到最后快filish的时候点击 Save Response File 按钮制定db.rsp文件存放路径;最后cancel安装界面。

2)如果不能执行图形化界面录制,可以通过编辑现有的rsp文件

打开安装文件路径找到response文件夹里面的 db_install.rsp文件。

根据文件提示修改相关内容,一般是安装组,ORACLE_HOME,ORACLE_BASE 路径等信息。

3、执行静默安装操作

1)开始静默安装

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

2)查看安装过程

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

tail -100f installActions2012-03-13_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.

桌面安装

http://www.linuxidc.com/Linux/2012-12/76584p2.htm

http://www.linuxidc.com/Linux/2013-10/91270.htm

http://www.cnblogs.com/mophee/archive/2013/06/01/3107137.html

http://www.bitscn.com/pdb/oracle/201404/195426.html

修改登录模块请求文件
vi /etc/pam.d/login
于文件结尾添加如下信息
session    required    /lib64/security/pam_limits.so
session    required    pam_limits.so

你可能感兴趣的:(oracle)