1. 安装环境
linux虚拟机:CentOS7
Oracle:11gR2
2.系统要求
1. linux安装Oracle系统要求
系统要求 | 说明 |
---|---|
内存 | 必须高于1G的物理内存 |
交换空间 | 一般为内存的2倍 swap |
硬盘 | 5G以上 |
2. 修改操作系统的核心参数
在root用户下执行以下步骤:
- 修改用户的shell的限制,修改/etc/security/limits.conf文件
oracle soft nproc 2047 —软限制,单个用户可用的最大进程数
oracle hard nproc 16384 —硬限制,单个用户可用的最大进程数
oracle soft nofile 10240 — 允许打开文件的最大数量
oracle hard nofile 65536
软限制需小于硬限制
vim /etc/security/limits.conf
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
- 修改/etc/pam.d/login 文件,将下列内容加入该文件。
vim /etc/pam.d/login
session required pam_limits.so
- 修改linux内核,修改/etc/sysctl.conf文件,将下列内容加入该文件
fs.file-max = 6815744
fs.aio-max-nr = 1048576
kernel.shmall = 2097152
kernel.shmmax = 2147483648
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
net.ipv4.ip_local_port_range = 9000 65500
net.core.rmem_default = 4194304
net.core.rmem_max = 4194304
net.core.wmem_default = 262144
net.core.wmem_max = 1048576
fs.aio-max-nr = 1048576 --- 同时拥有异步IO请求数目
fs.file-max = 6815744 --- 在Linux中可以打开的文件数目
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显示如下
[root@localhost ~]# sysctl -p
fs.file-max = 6815744
fs.aio-max-nr = 1048576
kernel.shmall = 2097152
kernel.shmmax = 2147483648
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
net.ipv4.ip_local_port_range = 9000 65500
net.core.rmem_default = 4194304
net.core.rmem_max = 4194304
net.core.wmem_default = 262144
net.core.wmem_max = 1048576
- 编辑 /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
- 创建相关用户和组,作为软件安装和支持组的拥有者。
[root@localhost ~]# vim /etc/sysctl.conf
[root@localhost ~]# groupadd oinstall
[root@localhost ~]# groupadd dba
[root@localhost ~]# useradd -g oinstall -g dba oracle
[root@localhost ~]# passwd oracle
- 创建数据库软件目录和数据文件存放目录,目录的位置,根据自己的情况来定,注意磁盘空间即可,这里我把其放到oracle用户下,例如
mkdir /home/oracle/app
mkdir /home/oracle/app/oracle
mkdir /home/oracle/app/oradata
mkdir /home/oracle/app/oracle/product
- 更改目录属主为Oracle用户所有,输入命令:
chown -R oracle:oinstall /home/oracle/app
- 配置oracle用户的环境变量,首先,切换到新创建的oracle用户下
su - oracle
vim .bash_profile
umask 022
export ORACLE_BASE=/home/oracle/app
export ORACLE_HOME=$ORACLE_BASE/oracle/product/11.2.0/dbhome_1
export ORACLE_SID=orcl
export PATH=$PATH:$HOME/bin:$ORACLE_HOME/bin
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/usr/lib
source .bash_profile
3. 安装过程
- 当上述系统要求操作全部完成后,注销系统,在图形界面以Oracle用户登陆。首先将下载的Oracle安装包复制到linux中
unzip linux.x64_11gR2_database_1of2.zip
unzip linux.x64_11gR2_database_2of2.zip
解压完成后 cd 进入其解压后的目录database
cd database/
[root@localhost database]# ls
doc install response rpm runInstaller sshsetup stage welcome.html
2.用oracle用户登录可视化界面,执行安装,输入命令
cd database
./runInstaller