操作系统和存储环境
Linux版本:
[root@rac1 ~]# lsb_release -a
LSB Version: :core-4.0-amd64:core-4.0-ia32:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-ia32:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-ia32:printing-4.0-noarch
Distributor ID: RedHatEnterpriseServer
Description: Red Hat Enterprise Linux Server release 5.6 (Tikanga)
Release: 5.6
Codename: Tikanga内存状况[root@rac1 Server]# free
total used free shared buffers cached
Mem: 4043728 714236 3329492 0 38784 431684
-/+ buffers/cache: 243768 3799960
Swap: 33551744 0 33551744
存储从openfiler上分出几个lun,划出3个1GB的分区用作ocr和voting,3个100GB的分区用于数据文件的存储,3个60GB的分区用于闪回恢复区接下来要安装2节点RAC,安装介质可以直接使用11.2.0.3的patch
检查系统中是否安装了需要的包 - rpm -q --qf "%{NAME}-%{VERSION}-%{RELEASE} (%{ARCH})
" binutils
- compat-libstdc++-33
- elfutils-libelf
- elfutils-libelf-devel
- gcc
- gcc-c++
- glibc
- glibc-common
- glibc-devel
- glibc-headers
- ksh
- libaio
- libaio-devel
- libgcc
- libstdc++
- libstdc++-devel
- make
- sysstat
- unixODBC
- unixODBC-devel
创建用户
新建用户组
groupadd -g 1000 oinstallgroupadd -g 1020 asmadmingroupadd -g 1021 asmdbagroupadd -g 1031 dbagroupadd -g 1022 asmoper 创建用户
useradd -u 1100 -g oinstall -G asmadmin,asmdba,dba griduseradd -u 1101 -g oinstall -G dba,asmdba Oracle passwd oraclepasswd grid grid用户的环境变量 if [ -t 0 ]; then
stty intr ^C
fi
export ORACLE_BASE=/opt/app/oracle
export ORACLE_HOME=/opt/app/11.2.0/grid
export ORACLE_SID=+ASM1
export PATH=$ORACLE_HOME/bin:$PATH
umask 022 oracle用户的环境变量 if [ -t 0 ]; then
stty intr ^C
fi
export ORACLE_BASE=/opt/app/oracle
export ORACLE_HOME=/opt/app/oracle/product/11.2.0/db_1
export ORACLE_SID=oradb_1
export PATH=$ORACLE_HOME/bin:$PATH
umask 022 root用户环境变量 export PATH=/opt/app/11.2.0/grid/bin:/opt/app/oracle/product/11.2.0/db_1/bin:$PATH
配置网络
修改/etc/hosts文件 # Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1 localhost.localdomain localhost
# Public Network - (eth0,eth1---bond0)
192.168.106.241 rac1 rac1.wildwave.com
192.168.106.242 rac2 rac2.wildwave.com
# Private Interconnect - (eth2,eth3-bond1)
10.10.10.241 rac1-priv
10.10.10.242 rac2-priv
# Public Virtual IP (VIP) addresses for - (eth0,eth1---bond0)
192.168.106.243 rac1-vip rac1-vip.wildwave.com
192.168.106.244 rac2-vip rac2-vip.wildwave.com
有关Oracle安装以及Oracle-JDBC的使用问题Oracle数据库ORA-01940: 无法删除当前已连接的用户相关资讯 Oracle数据库 RHEL Oracle入门教程 oracle数据库教程
- Oracle数据库全球化 (03月01日)
- 在CentOS 6.6上搭建C++运行环境并 (10/10/2015 19:44:40)
- 在VMware中安装RHEL6.2(下)—— (01/07/2015 12:24:47)
| - Red Hat Enterprise Linux 7.2 发 (11/20/2015 13:39:31)
- Oracle数据库日期过滤方法性能比较 (02/02/2015 13:20:26)
- 使用Windows 2003 Server R2给RHEL (01/03/2015 09:14:16)
|
本文评论 查看全部评论 (0)