本文档是Oracle Database 11.2.0.3 for CentOS 6.6 Server(x86_64平台)的静默安装指南。所有操作无需使用图形界面。静默安装能减少安装出错的可能性,也能大大加快安装速度。
# 后跟命令表示以操作系统下root用户操作;
$ 后跟命令表示以操作系统下oracle用户操作;
1.0 安装前检查
内存大小要求
Oracle 11.2 建议内存是在2GB或者更多。 运行以下命令:
# grep MemTotal /proc/meminfo
MemTotal: 8193660 kB
交换分区要求
物理内存与swap空间之间的关系如下表所示:
Available RAM Swap Space Required
Between 1 GB and 2 GB >1.5 times the size of the RAM
Between 2 GB and 16 GB Equal to the size of the RAM
More than 16 GB >16 GB
运行以下命令:
# grep SwapTotal /proc/meminfo
SwapTotal: 8388604 kB
操作系统版本
通过命令查看系统架构:
# uname -m
x86_64
查看操作系统版本命令:
#cat /etc/redhat-release
CentOS release 6.6 (Final)
检查防火墙是否开启
# service iptables status
关闭防火墙
# service iptables stop
iptables: Flushing firewall rules: [ OK ]
iptables: Setting chains to policy ACCEPT: filter [ OK ]
iptables: Unloading modules: [ OK ]
# chkconfig iptables off
# chkconfig iptables --list
iptables 0:off 1:off 2:off 3:off 4:off 5:off 6:off
selinux设置“SELINUX=disabled ”
# vi /etc/sysconfig/selinux
1.1 上传软件
将数据库安装介质上传到服务器。
1.2 Package安装检查
# rpm -q \
binutils \
compat-libstdc++-33 \
compat-libcap1 \
elfutils-libelf \
elfutils-libelf-devel \
expat \
gcc \
gcc-c++ \
glibc \
glibc-common \
glibc-devel \
glibc-headers \
libaio \
libaio-devel \
libgcc \
libstdc++ \
libstdc++-devel \
make \
pdksh \
sysstat \
rpm -q pdksh-5.2.14-1.i386.rpm \
unixODBC \
unixODBC-devel | grep "not installed"
如果系统没有存在相关的RPM包,则通以下命令进行安装
# yum –y install
本地YUM安装(
此步骤非必须)
配置yum本地安装源:
创建加载目录
# mkdir -p /mnt/cdrom
加载安装光盘
# mount /dev/cdrom /mnt/cdrom
创建一个repo文件
# mkdir backup
# mv *.repo backup/
# vi /etc/yum.repos.d/oracle.repo
添加以下以下内容到oracle.repo。
[LOCAL]
name=local
baseurl=file:///mnt/cdrom
enable=1
gpgcheck=0
按Esc退出并保存(:wq!)
# yum clean all
Loaded plugins: fastestmirror, refresh-packagekit, security
Cleaning repos: LOCAL base extras updates
Cleaning up Everything
创建交换分区 (
此步骤非必须)
1.创建交换分区的文件:增加1G大小的交换分区,则命令写法如下,其中的 count 等于想要的块大小。
# dd if=/dev/zero of=/home/swapfile bs=1M count=16384
16384+0 records in
16384+0 records out
17179869184 bytes (17 GB) copied, 305.584 s, 56.2 MB/s
2.设置交换分区文件:
# mkswap /home/swapfile #建立swap的文件系统
mkswap: /home/swapfile: warning: don't erase bootbits sectors
on whole disk. Use -f to force.
Setting up swapspace version 1, size = 16777212 KiB
no label, UUID=8649e904-dd30-4ecf-bbc9-65cc29134579
3.立即启用交换分区文件:
# swapon /home/swapfile #启用swap文件
4.使系统开机时自启用,在文件/etc/fstab中添加一行:
/home/swapfile swap swap defaults 0 0
5.完成
1.3 增加数据库组和用户
# id oracle (确认oracle用户是否存在)
# /usr/sbin/groupadd oinstall (建立产品清单管理组)
# /usr/sbin/groupadd dba (建立数据库安装组)
# /usr/sbin/groupadd asmadmin (建立ASM管理组)
# /usr/sbin/groupadd asmdba (建立Grid管理组)
# /usr/sbin/useradd -g oinstall -G dba,asmdba oracle -d /home/oracle (oinstall为主要组,确保/home/oracle原不存在)
# id oracle (记住oracle用户的uid和gid)
uid=501(oracle) gid=501(oinstall) groups=501(oinstall),502(dba),504(asmdba)
# passwd oracle
1.4 调整OS内核参数
设置原则:
kernel.shmmax 为 4GB-1byte或一半的物理内存, 哪个值更低用哪个;
fs.file-max 为512 * PROCESSES.
修改/etc/sysctl.conf文件
输入命令: vi /etc/sysctl.conf ,按i键进入编辑模式,将下列内容加入该文件
fs.file-max = 6815744
fs.aio-max-nr = 1048576
kernel.shmall = 2097152
kernel.shmmax = 4294967295
kernel.shmmni = 4096
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 = 1048576
将以下两项备注掉
#kernel.shmmax
#kernel.shmall
最后执行sysctl –p使配置生效。
# modprobe bridge
# sysctl -p (设置参数立即生效)
1.5 增加shell限制
修改/etc/security/limits.conf用户限制信息
输入命令:vi /etc/security/limits.conf,按i键进入编辑模式,将下列内容加入该文件。
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
oracle soft stack 10240
oracle hard stack 10240
修改/etc/pam.d/login文件
输入命令:vi /etc/pam.d/login,按i键进入编辑模式,将下列内容加入该文件。
session required /lib/security/pam_limits.so
session required pam_limits.so
修改/etc/profile文件
输入命令:vi /etc/profile,按i键进入编辑模式,将下列内容加入该文件.
if [ $USER = "oracle" ]; then
if [ $SHELL = "/bin/ksh" ]; then
ulimit -p 16384
ulimit -n 65536
else
ulimit -u 16384 -n 65536
fi
fi
1.6 建立必需目录
创建目录、所属关系和权限
目录的位置,根据自己的情况来定,注意磁盘空间即可。
输入命令:
# mkdir -p /u01/app
更改目录属主为Oracle用户所有,输入命令:
# chown -R oracle:oinstall /u01/app/
# chmod -R 775 /u01/app/
如果服务器有多网卡, 注意设置ORACLE_HOSTNAME为某网卡IP对应的主机名, 参照/etc/hosts文件.
对/etc/hosts进行配置
在/etc/hosts文件中加入主机IP与主机名。
192.168.0.54 dbbackup
1.7 设置oracle用户环境变量
配置Oracle用户的环境变量
首先,切换到新创建的oracle用户下,
输入:su - oracle ,然后在/home/oracle目录输入 : vi .bash_profile
按i编辑 .bash_profile,进入编辑模式,增加以下内容:
ORACLE_BASE=/u01/app/oracle; export ORACLE_BASE
ORACLE_HOME=$ORACLE_BASE/product/11.2.0.3/dbhome_1; export ORACLE_HOME
ORACLE_SID=ora11g; export ORACLE_SID
PATH=$ORACLE_HOME/bin:$PATH;export PATH
NLS_LANG=AMERICAN_AMERICA.AL32UTF8; export NLS_LANG
export NLS_DATE_FORMAT="YYYY-MM-DD HH24:MI:SS"
TEMP=/tmp;export TEMP
TMPDIR=/tmp;export TMPDIR
alias sqld='sqlplus / as sysdba'
umask 022
$ . ~/.bash_profile
1.8 解压Oracle安装文件
准备安装软件
将下载的Oracle安装包上传到linux中目录(/home/oracle)。
在目录/home/oracle下输入命令:
unzip p10404530_112030_Linux-x86-64_1of7.zip
unzip p10404530_112030_Linux-x86-64_2of7.zip
解压完成后 cd 进入其解压后的目录database
1.9 生成响应文件模板
生成响应文件模板,将database/response文件夹下的db_install.rsp文件复制一份出来,对里面的参数进行修改。
$ vi /home/oracle/db_install.rsp
#--------------------------------------------------------------------
#以下参数根据实际情况更改,一般也无需更改
oracle.install.option=INSTALL_DB_SWONLY
ORACLE_HOSTNAME=dbbackup
UNIX_GROUP_NAME=oinstall
INVENTORY_LOCATION=/u01/app/oraInventory
SELECTED_LANGUAGES=en,zh_CN
ORACLE_HOME=/u01/app/oracle/product/11.2.0.3/dbhome_1
ORACLE_BASE=/u01/app/oracle
oracle.install.db.InstallEdition=EE
oracle.install.db.DBA_GROUP=dba
oracle.install.db.OPER_GROUP=oinstall
DECLINE_SECURITY_UPDATES=true
#--------------------------------------------------------------------
各参数含义如下:
-silent 表示以静默方式安装,不会有任何提示
-force 允许安装到一个非空目录
-noconfig 表示不运行配置助手netca
-responseFile 表示使用哪个响应文件,必需使用绝对路径
oracle.install.responseFileVersion 响应文件模板的版本,该参数不要更改
oracle.install.option 安装选项,本例只安装oracle软件,该参数不要更改
DECLINE_SECURITY_UPDATES 是否需要在线安全更新,设置为false,该参数不要更改
ORACLE_HOSTNAME 安装主机名
UNIX_GROUP_NAME oracle用户用于安装软件的组名
INVENTORY_LOCATION oracle产品清单目录
SELECTED_LANGUAGES oracle运行语言环境,一般包括引文和简繁体中文
ORACLE_HOME Oracle安装目录
ORACLE_BASE oracle基础目录
oracle.install.db.InstallEdition 安装版本类型,一般是企业版
oracle.install.db.isCustomInstall 是否定制安装,默认Partitioning,OLAP,RAT都选上了
oracle.install.db.customComponents 定制安装组件列表:除了以上默认的,可加上Label Security和Database Vault
oracle.install.db.DBA_GROUP oracle用户用于授予OSDBA权限的组名
oracle.install.db.OPER_GROUP oracle用户用于授予OSOPER权限的组名
1.10 开始安装oracle软件
1) 通过response文件静默安装, 大概2-3分钟:
开始安装软件
首先按db.rsp配置好参数信息。
执行以下脚本进行静默数据库安装:
$ ./runInstaller -silent -noconfig -
ignoreP
rereq
-responseFile /home/oracle/db_install.rsp
控制台直到出现以下提示则表示安装完成:
Starting Oracle Universal Installer...
Checking Temp space: must be greater than 120 MB. Actual 261424 MB Passed
Checking swap space: must be greater than 150 MB. Actual 8191 MB Passed
Preparing to launch Oracle Universal Installer from /tmp/OraInstall2016-02-14_03-31-16PM. Please wait ...[oracle@dbbackup database]$ You can find the log of this install session at:
/u01/app/oraInventory/logs/installActions2016-02-14_03-31-16PM.log
The installation of Oracle Database 11g was successful.
Please check '/u01/app/oraInventory/logs/silentInstall2016-02-14_03-31-16PM.log' for more details.
As a root user, execute the following script(s):
1. /u01/app/oraInventory/orainstRoot.sh
2. /u01/app/oracle/product/11.2.0.3/dbhome_1/root.sh
Successfully Setup Software.
[oracle@dbbackup database]$ exit
logout
[root@dbbackup Downloads]# /u01/app
/
oraInventory/orainstRoot.sh
Changing permissions of /u01/app/oraInventory.
Adding read,write permissions for group.
Removing read,write,execute permissions for world.
Changing groupname of /u01/app/oraInventory to oinstall.
The execution of the script is complete.
[root@dbbackup Downloads]# /
u01
/app/oracle/product/11.2.0.3/dbhome_1/root.sh
Check /u01/app/oracle/product/11.2.0.3/dbhome_1/install/root_dbbackup_2016-02-14_15-34-35.log for the output of root script
2) 安装期间查看安装日志信息了解安装进度:
$ cd $ORACLE_BASE/oraInventory/logs
$ tail -100f installActions*.log
软件安装成功!
1.1 静默配置监听
生成响应文件模板,将database/response文件夹下的netca.rsp文件复制一份出来,对里面的参数进行修改。
通过response文件运行netca, 生成sqlnet.ora和listener.ora文件, 位于$ORACLE_HOME/network/admin目录下:
# su - oracle
$ORACLE_HOME/bin/netca /silent /
respons
efile
/home/oracle/netca.rsp
Parsing command line arguments:
Parameter "silent" = true
Parameter "responsefile" = /home/oracle/netca.rsp
Done parsing command line arguments.
Oracle Net Services Configuration:
Profile configuration complete.
Oracle Net Listener Startup:
Running Listener Control:
/u01/app/oracle/product/11.2.0.3/dbhome_1/bin/lsnrctl start LISTENER
Listener Control complete.
Listener started successfully.
Listener configuration complete.
Oracle Net Services configuration successful. The exit code is 0
$ ll $ORACLE_HOME/network/admin/*.ora
$ lsnrctl status
执行完后, 监听就已经启动了, 默认端口是1521, 默认是动态监听, 只要实例启动了就会监听到。可以在安装之后,手工修改端口号为1601。
1.2 静默建库
1) 生成响应文件模板:
生成响应文件模板,将database/response文件夹下的dbca.rsp文件复制一份出来,对里面的参数进行修改。
$ vi /home/oracle/dbca.rsp
#--------------------------------------------------------------------
#以下参数不要更改
[GENERAL]
RESPONSEFILE_VERSION = "11.2.0"
OPERATION_TYPE = "createDatabase"
#以下参数必须设置
[CREATEDATABASE]
GDBNAME = "ora11g"
SID = "ora11g"
TEMPLATENAME = "General_Purpose.dbc"
#以下参数不设置则使用默认值,建议设置
CHARACTERSET = "AL32UTF8"
TOTALMEMORY = "3200"
--------------------------------------------------------------------
2) dbca静默建库, 大概3-4分钟:
种子数据库和控制文件位于$ORACLE_HOME/assistants/dbca/templates/下, 即Seed_Database.dfb和Seed_Database.ctl文件, 实际上建库就是基于通过rman恢复种子数据库和控制文件来实现的.
定制数据库DBCA
$ dbca -silent -responseFile
/
home/oracle/dbca.rsp
Enter SYS user password:
Enter SYSTEM user password:
Copying database files
1% complete
3% complete
11% complete
18% complete
26% complete
37% complete
Creating and starting Oracle instance
40% complete
45% complete
50% complete
55% complete
56% complete
60% complete
62% complete
Completing Database Creation
66% complete
70% complete
73% complete
85% complete
96% complete
100% complete
Look at the log file "/u01/app/oracle/cfgtoollogs/dbca/ora11g/ora11g.log" for further details.
库安装成功
各参数含义如下:
-silent 表示以静默方式安装
-responseFile 表示使用哪个响应文件,必需使用绝对路径
RESPONSEFILE_VERSION 响应文件模板的版本,该参数不要更改
OPERATION_TYPE 安装类型,该参数不要更改
GDBNAME 全局数据库名,点号前面默认是db_name,点号后面默认就是db_domain
TEMPLATENAME 建库模板名,参考各模板定义:$ORACLE_HOME/assistants/dbca/templates/*.dbc
CHARACTERSET 字符集,默认是WE8MSWIN1252
TOTALMEMORY 实例内存,默认是服务器物理内存的40%
3) 安装期间查看日志信息了解进度:
$ tail -100f $ORACLE_BASE/cfgtoollogs/dbca/$ORACLE_SID/$ORACLE_SID.log
$ tail -100f /u01/app/oracle/cfgtoollogs/dbca/ora11g/ora11g.log
Copying database files
DBCA_PROGRESS : 1%
DBCA_PROGRESS : 3%
DBCA_PROGRESS : 11%
DBCA_PROGRESS : 18%
DBCA_PROGRESS : 26%
DBCA_PROGRESS : 37%
Creating and starting Oracle instance
DBCA_PROGRESS : 40%
DBCA_PROGRESS : 45%
DBCA_PROGRESS : 50%
DBCA_PROGRESS : 55%
DBCA_PROGRESS : 56%
DBCA_PROGRESS : 60%
DBCA_PROGRESS : 62%
Completing Database Creation
DBCA_PROGRESS : 66%
DBCA_PROGRESS : 70%
DBCA_PROGRESS : 73%
DBCA_PROGRESS : 85%
DBCA_PROGRESS : 96%
DBCA_PROGRESS : 100%
Database creation complete. For details check the logfiles at:
/u01/app/oracle/cfgtoollogs/dbca/ora11g.
Database Information:
Global Database Name:ora11g
System Identifier(SID):ora11g
4) 建库后实例检查
$ ps -ef | grep ora_ | grep -v grep | wc -l
21
$ ps -ef | grep ora_ | grep -v grep
5) 建库后监听检查
$ lsnrctl status
LSNRCTL for Linux: Version 11.2.0.3.0 - Production on 14-FEB-2016 16:03:28
Copyright (c) 1991, 2011, Oracle. All rights reserved.
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for Linux: Version 11.2.0.3.0 - Production
Start Date 14-FEB-2016 15:42:23
Uptime 0 days 0 hr. 21 min. 5 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File /u01/app/oracle/product/11.2.0.3/dbhome_1/network/admin/listener.ora
Listener Log File /u01/app/oracle/diag/tnslsnr/dbbackup/listener/alert/log.xml
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1521)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=dbbackup)(PORT=1521)))
Services Summary...
Service "ora11g" has 1 instance(s).
Instance "ora11g", status READY, has 1 handler(s) for this service...
Service "ora11gXDB" has 1 instance(s).
Instance "ora11g", status READY, has 1 handler(s) for this service...
The command completed successfully
实例应该被动态注册到监听程序了. 如果未被动态注册到监听程序, 则可以手工注册:
$ sqlplus / as sysdba
SQL*Plus: Release 11.2.0.3.0 Production on Sun Feb 14 16:04:05 2016
Copyright (c) 1982, 2011, Oracle. All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> alter system register;
6) 改为归档模式并重启
$ sqlplus / as sysdba
SQL> shutdown immediate;
SQL> startup mount;
SQL> alter database archivelog;
SQL> alter database flashback on; (如果要启用数据库闪回功能则执行)
SQL> alter database open;
SQL> execute utl_recomp.recomp_serial(); (重新编译所有可能失效对象)
SQL> alter system archive log current; (手工归档测试)
到此建库完毕!
7) 默认安装的组件:
SQL> col COMP_ID format a8
col COMP_NAME format a35
col VERSION format a12
col schema format a12
col OTHER_SCHEMAS format a45
SQL> select comp_id,comp_name,version,schema,other_schemas from dba_registry order by 1;
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/29439655/viewspace-1988530/,如需转载,请注明出处,否则将追究法律责任。