Red Hat Enterprise Linux 4下安装Oracle 10g图解
1.下载oracle_database_10.2.0.1.0 for linux 安装程序:下载地址:oracle官方网站(注意安装文件的版本号)2.查询内核版本和所需
1.下载Oracle_database_10.2.0.1.0 for linux 安装程序:
下载地址:oracle官方网站(注意安装文件的版本号)
2.查询内核版本和所需的软件包,以为安装Oracle 10g准备好软件环境。当然了,你的机器需要满足Oracle 10g所需的硬件条件,此处略,可参看官方文档。
uname -r //所需内核版本为2.6.9-22.EL
用rpm -q 命令来查询一下软件包是否安装,例:rpm -q gcc,如果没有安装的话,可以从Linux安装光盘或网路上得到相应的rpm包,再安装即可。
gcc-3.4.4-2
make-3.80-5
glibc-2.3.4-2.13
binutils-2.15.92.0.2-15
openmotif-2.2.3-9.RHEL4.1
setarch-1.6-1
compat-gcc-32-3.2.3-47.3
compat-gcc-32-c++-3.2.3-47.3
compat-libstdc++-33-3.2.3-47.3
compat-libstdc++-296-2.96-132.7.2
compat-db-4.1.25-9 (此软件包不要也可)
3.解压软件:
将ORACLE安装压缩包解压,得到oracle_database_10.2.0.1.0.目录
4.设置核心参数:
在/etc/sysctl.conf文件中加入下列行:
kernel.shmall = 2097152
kernel.shmmax = 2147483648
kernel.shmmni = 4096
# semaphores: semmsl, semmns, semopm, semmni
kernel.sem = 250 32000 100 128
fs.file-max = 65536
net.ipv4.ip_local_port_range = 1024 65000
net.core.rmem_default=262144
ne t.core.rmem_max=262144
net.core.wmem_default=262144
net.core.wmem_max=262144
5.运行下列命令改变核心参数:/sbin/sysctl –p
6.在/etc/security/limits.conf文件中加入下列行:
* soft nproc 2047
* hard nproc 16384
* soft nofile 1024
* hard nofile 65536
//此处的*表示对所有的用户
7.在/etc/pam.d/login文件中加入下列行,如果里面没有的话:
session required /lib/security/pam_limits.so
8.创建用户和修改环境变量:
# /usr/sbin/groupadd oinstall /创建组用户/
# /usr/sbin/groupadd dba /创建组用户/
# /usr/sbin/useradd -g oinstall -G dba oracle /创建用户,并设定用户组/
# passwd oracle /设定oracle用户的密码/
用oracle登陆进操作系统,编辑.bash_profile文件(.bash_profile文件为隐藏文件,其位置在/home/oracle/.bash_profile),,由于linux默认的shell使用的是bash,故要编辑这个文件,如果你设定的使用csh,请编辑.login文件。
在.bash_profile中添加如下内容:
ORACLE_BASE=/opt/oracle
ORACLE_HOME=$ORACLE_BASE/product/10.2.0/db_1
ORACLE_SID=oracle
PATH=$PATH:$HOME/bin:$ORACLE_HOME/bin
LD_LIBRARY_PATH=$ORACLE_HOME/lib:/usr/lib
export ORACLE_BASE ORACLE_HOME ORACLE_SID PATH LD_LIBRARY_PATH
编辑完后,source .bash_profile,使得环境变量生效。
推荐阅读
-
windows系统安装虚拟机VMware12,然后在虚拟机中安装Red Hat Enterprise Linux6操作系统
-
Red Hat Enterprise Linux 8.0 安装
-
VMware15 虚拟机安装 Red Hat Enterprise Linux (RHEL) 7.0 Server
-
Red Hat Enterprise Linux 5.X的图形安装教程
-
在RedHat Enterprise Linux 5上安装Oracle 10g过程备忘录
-
Red Hat Enterprise Linux 4下安装Oracle 10g图解
-
Red Hat Enterprise Linux 5下安装Oracle全程图解
-
Red Hat AS4上的oracle 10g安装
-
Rad Hat Enterprise Linux 5.5上安装Oracle 11g R2
-
Oracle Enterprise Linux 5.6安装Oracle 10g数据库