Linux安装 oracle 11g r2
Posted 六楼外的风景
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux安装 oracle 11g r2相关的知识,希望对你有一定的参考价值。
[c-sharp] view plain copy
- OS:Fedora 15
- DB:Oracle 11gR2
- 将Oracle安装到home/oracle_11目录
配置过程:本文来自Oracle官方文档+网上资料
Oracle官方文档:http://www.oracle.com/pls/db112/homepage
1. 以root用户登录到Linux
2. 检查机器硬件要求
2.1 内存要求
[c-sharp] view plain copy
- 至少需要1GB的内存
- 查看机器内存大小
- # grep MemTotal /proc/meminfo
2.2 swap空间要求
[c-sharp] view plain copy
- 内存大小 swap空间大小
- 1 GB ~ 2 GB 内存大小*1.5
- 2 GB ~ 16 GB 内存大小
- > 16 GB 16 GB
- 查看swap空间大小
- # grep SwapTotal /proc/meminfo
2.3 空闲硬盘要求
[c-sharp] view plain copy
- /tmp目录需要1 GB的空闲空间
- 查看/tmp目录的空闲空间
- # df -h /tmp
- 安装Oracle软件需要的硬盘空间
- Enterprise Edition 3.95(software files)+1.7(data files)
- Standard Edition 3.88(software files)+1.5(data files)
- 查看机器中每个磁盘的空闲空间
- # df -h
3. 检查操作系统软件要求
Oracle官方文档中包含了多个Linux系统的要求,详细请参考官方文档
Fedora 15 (RHEL 5.x)的软件要求列表如下:
[c-sharp] view plain copy
- binutils-2.17.50.0.6
- compat-libstdc++-33-3.2.3
- elfutils-libelf-0.125
- elfutils-libelf-devel-0.125
- elfutils-libelf-devel-static-0.125
- gcc-4.1.2
- gcc-c++-4.1.2
- glibc-2.5-24
- glibc-common-2.5
- glibc-devel-2.5
- glibc-headers-2.5
- kernel-headers-2.6.18
- ksh-20060214
- libaio-0.3.106
- libaio-devel-0.3.106
- libgcc-4.1.2
- libgomp-4.1.2
- libstdc++-4.1.2
- libstdc++-devel-4.1.2
- make-3.81
- numactl-devel-0.9.8.i386
- sysstat-7.0.2
- 查看系统是否安装了该软件包
- # rpm -q package_name
4. 创建安装Oracle需要的系统组和用户
[c-sharp] view plain copy
- 创建Oracle Inventory 组
- # groupadd oinstall
- 创建OSDBA 组
- # groupadd dba
- 创建Oracle软件创建者
- # useradd -g oinstall -G dba oracle
- 修改oracle用户的密码
- # passwd oracle
5. 配置系统内核参数值
[c-sharp] view plain copy
- 编辑/etc/sysctl.conf文件
- vim /etc/sysctl.conf
- 在打开的文件底部添加下面内容
- fs.aio-max-nr = 1048576
- fs.file-max = 6815744
- kernel.shmall = 2097152
- kernel.shmmax = 536870912
- 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 = 1048586
- 改变当前系统内核参数值(让/etc/sysctl.conf立即生效)
- # sysctl -p
6. 检查Oracle安装用户(oracle)资源限制
[c-sharp] view plain copy
- 修改/etc/security/limits.conf文件
- vim /etc/security/limits.conf
- 在打开的文件底部添加下面内容
- oracle soft nproc 2047
- oracle hard nproc 16384
- oracle soft nofile 1024
- oracle hard nofile 65536
- oracle soft stack 10240
7. 创建安装Oracle软件所需要的目录
[c-sharp] view plain copy
- # mkdir -p /home/oracle_11/app/
- # chown -R oracle:oinstall /home/oracle_11/app/
- # chmod -R 775 /home/oracle_11/app/
8. 配置安装Oracle安装用户(oracle)的环境
[c-sharp] view plain copy
- 编辑 /home/oracle/.bash_profile
- vim /home/oracle/.bash_profile
- 在打开的文件中添加下面内容
- umask 022
- export ORACLE_BASE=/home/oracle_11/app
- export ORACLE_HOME=$ORACLE_BASE/oracle/product/11.2.0/db_1
- export ORACLE_SID=orcl --Oracle实例名,可修改
- export PATH=$PATH:HOME/bin:$ORACLE_HOME/bin
- 编辑 /etc/pam.d/login
- vim /etc/pam.d/login
- 在打开的文件中添加下面内容
- session required /lib/security/pam_limits.so
- session required pam_limits.so
- 编辑 /etc/profile
- vim /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. 查看系统是否支持图形界面
[c-sharp] view plain copy
- 查看root用户下是否已设置DISPLAY变量
- # echo $DISPLAY
- 如果有值出现,则说明已设置DISPLAY变量;否则,就需要手动设置DISPLAY
10. 开始安装Oracle软件
[c-sharp] view plain copy
- # cd /tmp
- # unzip linux_11gR2_database_1of2.zip linux_11gR2_database_2of2.zip
- # xhost +
- # su - oracle
- $ export DISPLAY=:0
- $ cd /database
- $ ./runInstaller
- 接下来系统会启动Oracle图形安装界面,安装过程和Windows下一样
在安装过程中,会提示在root用户下运行两个脚本文件(具体是哪两个,不记得了,按提示操作即可)。
Linux下的Oracle在安装结束后是处于运行状态的。重启机器后,Oracle不会像在Windows下那样将Oracle添加到Windows服务,在linux下需要手动启动Orcle服务
[c-sharp] view plain copy
- 在Linux环境下安装oracle 11g r2 ,磁盘分区如何划分?