`

RedHat Enterprise Linux 4 install oracle 10g procedure

阅读更多

RedHat Enterprise Linux 4 install oracle 10g procedure 

使用root 用户登录


1.检查安装包:


binutils-2.15.92.0.2-13.EL4
compat-db-4.1.25-9
compat-libstdc++-296-2.96-132.7.2
control-center-2.8.0-12
gcc-3.4.3-22.1.EL4
gcc-c++-3.4.3-22.1.EL44
glibc-2.3.4-2.9
glibc-common-2.3.4-2.9
gnome-libs-1.4.1.2.90-44.1
libstdc++-3.4.3-22.1
libstdc++-devel-3.4.3-22.1
make-3.80-5
pdksh-5.2.14-30
sysstat-5.0.5-1
xscreensaver-4.18-5.rhel4.2
setarch-1.6-1


2.创建组:


groupadd oinstall
groupadd oper
groupadd dba
  // 创建文件夹
mkdir /usr/local/src/oracle/product/10.2.0
  // 创建用户
useradd -g oinstall -G oper,dba oracle
  // 修改文件夹所属owner group
passwd oracle
  //设置密码
chown -R oracle:oinstall /usr/local/src/oracle

3. 修改参数

  a. -------------------------------------------
  vi /etc/sysctl.conf   后面添加以下内容
 
  kernel.shmall = 2097152
  kernel.shmmax = 2147483648
  kernel.shmmni = 4096
  kernel.sem = 250 32000 100 128
  fs.file-max = 65536
  net.ipv4.ip_local_port_range = 1024 65000
  net.core.rmem_default = 1048576
  net.core.rmem_max = 1048576
  net.core.wmem_default = 262144
  net.core.wmem_max = 262144
 
 
  //保存之后执行下面命令:
  [root@taink ~]# /sbin/sysctl -p
 
 
  b. -------------------------------------------
  vi /etc/security/limits.conf 在最后添加以下内容
 
    oracle soft nproc 2047
    oracle hard nproc 16384
    oracle soft nofile 1024
    oracle hard nofile 65536
 
  c. -------------------------------------------
  vi /etc/pam.d/login   在最后添加以下内容
 
    session required /lib/security/pam_limits.so
    session required pam_limits.so
 
  d. -------------------------------------------
 
  vi /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
 
 
  使用oracle 用户登录
 
  e. -------------------------------------------
  vi .bash_profile 在最后添加以下内容
 
  ORACLE_BASE=/usr/local/src/oracle
  ORACLE_HOME=$ORACLE_BASE/product/10.2.0/db_1
  ORACLE_SID=TAINK
  PATH=$ORACLE_HOME/bin:$PATH
 
  export ORACLE_BASE ORACLE_HOME ORACLE_SID PATH

 

  stty erase ^h
 
  # end
  退出oracle 用户后,再登录:如下操作
  [root@taink ~]# su - oracle
  [oracle@taink ~]$ $ env | grep ORA
  ORACLE_SID=TAINK
  ORACLE_BASE=/u01
  ORACLE_HOME=/u01/oracle
  [oracle@taink ~]$ $

4.使用oracle 用户登录,并解压 oracle 安装文件


unzip filename.zip
解压后的database 文件是放在 /usr/local/src/oracle目录下面的

运行安装命令:

a./runInstaller
//安装oracle

  //使用root 用户执行以下命令
  /usr/local/src/oracle/oraInventory/orainstRoot.sh
  /usr/local/src/oracle/product/10.2.0/db_1/root.sh

b.netca
//配置监听

 

 

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics