zoukankan      html  css  js  c++  java
  • Oracle HA 之 Server Pool 实战

    --创建server pool的两种方式:
        图形界面:console和dbca       演示-略
        命令行工具:srvctl和crsctl

    --srvctl和crsctl创建serverpool

    [grid@node2 ~]$ srvctl add serverpool -g s_pool -l 1 -u 2 -i 1 -n node1,node2
    [grid@node2 ~]$ crsctl add serverpool c_pool -attr "MIN_SIZE=1,MAX_SIZE=2,IMPORTANCE=1"

    --查看server pool

    [grid@node2 ~]$ srvctl config srvpool
    Server pool name: Free
    Importance: 0, Min: 0, Max: -1
    Candidate server names:
    Server pool name: Generic
    Importance: 0, Min: 0, Max: -1
    Candidate server names:
    Server pool name: fasppool
    Importance: 10, Min: 1, Max: 2
    Candidate server names: node2,node1
    Server pool name: s_pool
    Importance: 1, Min: 1, Max: 2
    Candidate server names: node1,node2
    [grid@node2 ~]$ srvctl config serverpool
    Server pool name: Free
    Importance: 0, Min: 0, Max: -1
    Candidate server names:
    Server pool name: Generic
    Importance: 0, Min: 0, Max: -1
    Candidate server names:
    Server pool name: fasppool
    Importance: 10, Min: 1, Max: 2
    Candidate server names: node2,node1
    Server pool name: s_pool
    Importance: 1, Min: 1, Max: 2
    Candidate server names: node1,node2
    [grid@node2 ~]$ srvctl status serverpool
    Server pool name: Free
    Active servers count: 0
    Server pool name: Generic
    Active servers count: 0
    Server pool name: fasppool
    Active servers count: 1
    Server pool name: s_pool
    Active servers count: 1


    [grid@node2 ~]$ crsctl status serverpool -p
    NAME=Free
    IMPORTANCE=0
    MIN_SIZE=0
    MAX_SIZE=-1
    SERVER_NAMES=
    PARENT_POOLS=
    EXCLUSIVE_POOLS=
    ACL=owner:grid:rwx,pgrp:oinstall:rwx,other::r-x

    NAME=Generic
    IMPORTANCE=0
    MIN_SIZE=0
    MAX_SIZE=-1
    SERVER_NAMES=
    PARENT_POOLS=
    EXCLUSIVE_POOLS=
    ACL=owner:grid:r-x,pgrp:oinstall:r-x,other::r-x

    NAME=c_pool
    IMPORTANCE=1
    MIN_SIZE=1
    MAX_SIZE=2
    SERVER_NAMES=
    PARENT_POOLS=
    EXCLUSIVE_POOLS=
    ACL=owner:grid:rwx,pgrp:oinstall:rwx,other::r--

    NAME=efmispool
    IMPORTANCE=0
    MIN_SIZE=0
    MAX_SIZE=1
    SERVER_NAMES=
    PARENT_POOLS=
    EXCLUSIVE_POOLS=
    ACL=owner:oracle:rwx,pgrp:oinstall:rwx,other::r--

    NAME=ora.fasppool
    IMPORTANCE=10
    MIN_SIZE=1
    MAX_SIZE=2
    SERVER_NAMES=node2 node1
    PARENT_POOLS=
    EXCLUSIVE_POOLS=
    ACL=owner:oracle:rwx,pgrp:oinstall:rwx,other::r--

    NAME=ora.s_pool
    IMPORTANCE=1
    MIN_SIZE=1
    MAX_SIZE=2
    SERVER_NAMES=node1 node2
    PARENT_POOLS=
    EXCLUSIVE_POOLS=
    ACL=owner:grid:rwx,pgrp:oinstall:rwx,other::r--

    [grid@node2 ~]$ crsctl status serverpool -f

    --删除server pool

    [grid@node2 ~]$ srvctl remove serverpool -g s_pool
    [grid@node2 ~]$ crsctl delete serverpool c_pool

  • 相关阅读:
    Docker 给 故障停掉的 container 增加 restart 参数
    使用docker化的nginx 反向代理 docker化的GSCloud 的方法
    apache benchmark 的简单安装与测试
    mysql5.7 的 user表的密码字段从 password 变成了 authentication_string
    Windows 机器上面同时安装mysql5.6 和 mysql5.7 的方法
    python4delphi 安装
    见证下神奇的时刻
    windows下面安装Python和pip终极教程
    python如何安装pip和easy_installer工具
    Tushare的安装
  • 原文地址:https://www.cnblogs.com/wcwen1990/p/6661657.html
Copyright © 2011-2022 走看看