Oracle 11.2.0.4 单实例安装 (vmware+redhat 6.8+补丁升级)
1.简述
本文的安装部署的参考官方文档进行编写,官网有可能更新,如有不同之处以官方文档为准。本文中上传文件的步骤均省略。
数据库版本:11.2.0.4
操作系统:redhat 6.8
2.环境准备
2.1配置本地yum源
将安装镜像挂载到虚拟机上。
mount /dev/cdrom /mnt
cd /etc/yum.repos.d/
mv * ../
vi /etc/yum.repos.d/ol.repo
[local-source] #yum的名字 (随意)
name=ol #yum的注释 (随意)
baseurl=file:///mnt/ #YUM 源位置 ( 可支持 FTP/HTTP 等)
enabled=1 #是否启用此 YUM 源 .0 为不启用 ,1 为启用。
gpgcheck=0 #gpg 秘钥检测功能是否支持 .0 为否 ,1 为允许。
2.2安装软件包
yum install binutils* compat-libstdc* gcc* gcc-c++* glibc* ksh* libgcc* libstdc++* libaio* make* sysstat* elfutils-libelf-devel* elfutils-libelf* xterm
2.3创建用户、组、目录
groupadd -g 1000 oinstall
groupadd -g 1001 dba
useradd -u 1101 -g oinstall -G dba oracle
mkdir -p /u01/app/oracle
chown -R oracle:oinstall /u01/app/oracle
chmod -R 775 /u01/app/oracle
mkdir -p /u01/app/oraInventory
chown -R oracle:oinstall /u01/app/oraInventory
chmod -R 775 /u01/app/oraInventory
设置oracle用户密码:
passwd oracle
2.4修改/etc/hosts
vi /etc/hosts
10.1.200.66 oracle
2.5修改操作系统相关配置
2.5.1 /etc/security/limits.conf
/etc/security/limits.conf 是 Linux 资源使用配置文件,用来限制用户对系统资源的使用
vi /etc/security/limits.conf
添加
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
2.5.2 /etc/pam.d/login
在linux中进行身份或是状态的验证程序是由PAM来进行的,PAM(Pluggable Authentication Modules)可动态加载验证模块,因为可以按需要动态的对验证的内容进行变更,所以可以大大提高验证的灵活性。
vi /etc/pam.d/login
添加:
session required pam_limits.so
2.5.3 /etc/sysctl.conf
vi /etc/sysctl.conf
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
fs.file-max = 6815744
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.shmall = 20447232 #物理内存/4k,See Note: 301830.1 for more information.
kernel.shmmax = 50251117363 #物理内存*0.6,单位字节 (or higher at customer's discretion - see Note:567506.1)
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
fs.aio-max-nr=3145728 #参考mos 579108.1
配置生效
sysctl -p
2.5.4 /etc/profile
vi /etc/profile
添加:
if [ $USER = "oracle" ]; then
if [ $SHELL = "/bin/ksh" ]; then
ulimit -u 16384
ulimit -n 65536
else
ulimit -u 16384 -n 65536
fi
fi
2.5.5 禁用SELinux、iptable
vi /etc/selinux/config
SELINUX=disabled
需要重启生效。
service iptables stop
chkconfig iptables off
2.6oracle用户环境变量配置
su - oracle
vi ~/.bash_profile
export TMP=/tmp
export TMPDIR=$TMP
export ORACLE_SID=orcl
export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=$ORACLE_BASE/product/11.2.0.4/db_1
export TNS_ADMIN=$ORACLE_HOME/network/admin
export PATH=/usr/sbin:$PATH
export PATH=$ORACLE_HOME/bin:$PATH
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib
export CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib
umask 022
配置后加载环境变量
source ~/.bash_profile
3.安装11.2.0.4数据库软件
3.1下载数据库软件包
有安装包有补丁包的忽略该步骤。
用mos文档:Assistant: Download Reference for Oracle Database/GI Update, Revision, PSU, SPU(CPU), Bundle Patches, Patchsets and Base Releases (Doc ID 2118136.2),下载软件包与最新的PSU。
3.2安装数据库软件(仅安装软件)
将数据库安装包上传到服务器的路径下,赋权777到oracle用户,然后解压:
[root@whepi1 ~]# su - oracle
[oracle@whepi1 ~]$ cd /soft
[oracle@whepi1 soft]$ unzip p13390677_112040_Linux-x86-64_1of7.zip
[oracle@whepi1 soft]$ unzip p13390677_112040_Linux-x86-64_2of7.zip
使用oracle用户可视化安装数据库
以下图中忽略如下报错
开始安装
以下脚本用root用户,在命令行界面执行。
4.安装数据库补丁
到https://updates.oracle.com/download/6880880.html下载对应版本的opatch
然后上传到服务器。
4.1更新opatch
上传opatch文件到服务器:
[root@whepi1 soft]# su - oracle
[oracle@whepi1 ~]$ cd $ORACLE_HOME
[oracle@whepi1 db_1]$ mv OPatch/ OPatch_bk20171113/
[oracle@whepi1 db_1]$ exit
logout
[root@whepi1 soft]# cd /soft/
[root@whepi1 soft]# cp -R OPatch/ /u01/app/oracle/product/11.2.0.4/db_1/
[root@whepi1 soft]# chown -R oracle:oinstall /u01/app/oracle/product/11.2.0.4/db_1/OPatch
4.2安装补丁
上传PSU补丁包,然后按照以下步骤安装。
[root@whepi1 soft]# su - oracle
[oracle@whepi1 ~]$ cd /soft/
[oracle@whepi1 soft]$ unzip database_psu_p26609445_112040_Linux-x86-64.zip
[oracle@whepi1 ~]$ cd $ORACLE_HOME/OPatch
[oracle@whepi1 OPatch]$ ./opatch apply /soft/26609445/
检查补丁是否正常安装:
./opatch lsinventory
5.使用DBCA创建数据库
用oracle用户登录,可视化安装
[oracle@test12c1 database]$ dbca
这里SID和oracle用户的环境变量ORACLE_SID对应
我这里不开启EM,需要开启的同学打勾。
需要开启自动维护的可以打勾
密码先不要设置太复杂,记得之前设置了一些特殊字符,导致BUG报错,建议先设置简单的。等数据库创建完成后,再修改密码。详见mos文档 DBCA fails in the middle of database creation with ORA-13516 / ORA-06512 (Doc ID 1929718.1)
测试环境就不开启FRA与archive log了,需要的同学自行开启。
字符集自己选需要的,没想法的UTF8不会错。
控制文件、redo日志的相关配置可以在这里调整。
大功告成。