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.

  • 相关阅读:
    生成器
    IO调度算法
    进程与线程
    磁盘阵列(RAID)实例
    KVM虚拟化技术(七)虚拟机配置文件
    查询快递单号-京东快递接口
    快递单号查询快递鸟API接口-优速快递
    查询快递单号-德邦快递
    快递单号查询快递鸟API接口-EMS
    快递单号查询快递鸟API接口--安能快递
  • 原文地址:https://www.cnblogs.com/kramer/p/3096490.html
Copyright © 2011-2022 走看看