博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle HA 之 Server Pool 实战
阅读量:6403 次
发布时间:2019-06-23

本文共 2363 字,大约阅读时间需要 7 分钟。

--创建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

转载地址:http://phjea.baihongyu.com/

你可能感兴趣的文章
九种 “姿势” 让你彻底解决跨域问题
查看>>
php中mysqli 处理查询结果集总结
查看>>
你不知道的JavaScript运算符
查看>>
小程序开发注意事项
查看>>
ECMAScript7规范中的instanceof操作符
查看>>
Hadoop HDFS原理分析
查看>>
【webpack4】基本配置和入门api
查看>>
Mac使用ssh公钥登录Linux
查看>>
【366天】跃迁之路——程序员高效学习方法论探索系列(实验阶段124-2018.02.06)...
查看>>
POJ3070-Fibonacci(矩阵快速幂)
查看>>
[vue插件]基于vue2.x的电商图片放大镜插件
查看>>
标准的组件结构
查看>>
vue——一个页面实现音乐播放器
查看>>
SVG 扬帆起航
查看>>
NET Core-学习笔记(二)
查看>>
职业生涯上的点点滴滴
查看>>
Linux下添加新硬盘,分区及挂载
查看>>
一起来将vscode变成私人定制笔记本
查看>>
Flutter 云音乐
查看>>
RecyclerView实现多type页面
查看>>