zoukankan      html  css  js  c++  java
  • ORACLE RAC install plan and implementation

    Configuration Insatallation Direcotries and Shared Storage.

    Oracle Inventory Directory

    Documents(rac 2 day) says the oraInventory directory is created by OUI during installation. But based on what I remember, we need to create this directory beore run OUI. So need to test. ???????????????

    1. Run the following command to check for an existing Oracle Inventory directory:
    # more /etc/oraInst.loc
    2. If the oraInst.loc file exists, then the output from this command is similar to the following:

    inventory_loc=/u01/app/oraInventory
    inst_group=oinstall
    In the previous output example:
    ■ The inventory_loc group shows the location of the Oracle Inventory.
    ■ The inst_group parameter shows the name of the Oracle Inventory group(in this example, oinstall).

    If the Oracle Inventory directory does not exist, then you do not have to create one before installing the Oracle software. ?????????????????????

    Oracle Grid Infrastructure Home Directory

    OUI installs Oracle Clusterware and Oracle ASM into a directory referred to as Grid_home.

    To create the Grid home directory as the root user, enter the following commands:
    # mkdir -p /u01/app/11.2.0/grid
    # chown -R oracle:oinstall /u01/app/11.2.0/grid

     

     Oracle Base Directory

    Oracle Universal Installer (OUI) creates the Oracle base directory for you in the location you specify.   ???????????

    1. Log in as the root user.
    2. Use the mkdir command to create the path to the Oracle base directory.
    # mkdir -p /u01/app/oracle/
    3. Change the ownership of the Oracle base path to the Oracle software owner,
    oracle.
    # chown -R oracle:oinstall /u01/app/oracle/
    4. Change the permissions on the Oracle base directory to 775.
    # chmod -R 775 /u01/app/oracle/

    Oracle Home Directory

    The document says "You do not have to create these directories before installation. By default, the installer suggests a subdirectory of the Oracle basdirectory for the Oracle home." ????????????????

    ASM

    If you
    select a noninteractive installation mode, then by default it creates one disk group
    and stores the OCR and voting disk files there. If you want to have any other disk
    groups for use in a subsequent database install, then you can choose interactive
    mode, or run ASMCA (or a command line tool) to create the appropriate disk
    groups before starting the database install.

  • 相关阅读:
    STM32F407 开发环境搭建 程序下载 个人笔记
    用bootstrap_table实现html 表格翻页
    STM32F407 正点原子 资料网址记录
    C51 动态数码管 个人笔记
    C51 继电器 个人笔记
    谷歌浏览器截长图
    C51 原创电子琴 (蜂鸣器/计时器/中断/矩阵按键)
    从零自学Hadoop(01):认识Hadoop
    Centos修改DNS重启或者重启network服务后丢失问题处理
    初次体验VS2015正式版,安装详细过程。
  • 原文地址:https://www.cnblogs.com/kramer/p/3096490.html
Copyright © 2011-2022 走看看