美文网首页
【Ora12c-GI】将Standard集群修改为Flex集群

【Ora12c-GI】将Standard集群修改为Flex集群

作者: mikeliuy | 来源:发表于2017-06-30 14:47 被阅读20次

Oracle12C支持两种集群模式:Standard和Flex。
11G即是Standard的;Flex是12C的新特性。

当将Standard修改为Flex时,出现如下问题:

# crsctl set cluster mode flex
CRS-4937: Unable to set the cluster mode.

查看官方文档,发现需要配置GNS,Standard模式下不需要GNS,但是Flex模式是需要的。

下面是官方文档(加入翻译)。

1. Run the following command to determine the current mode of the cluster:

确认当前集群模式:

$ crsctl get cluster mode status
2. Run the following command to ensure that the Grid Naming Service (GNS) is configured with a fixed VIP:

确认GNS配置。

$ srvctl config gns

This procedure cannot succeed unless GNS is configured with a fixed VIP. If there is no GNS, then, as root, create one, as follows:
GNS需要配置flexed-VIP的,如果没有配置,需要使用root用户创建一个。

# srvctl add gns -vip vip_name | ip_address

注意:要与集群公网在同一个网段。

Run the following command as root to start GNS:
启动GNS。

# srvctl start gns
3. Use the Oracle Automatic Storage Management Configuration Assistant (ASMCA) to enable Oracle Flex ASM in the cluster before you change the cluster mode.

使用asmca将ASM存储转换为Flex ASM。

4. Run the following command as root to change the mode of the cluster to be an Oracle Flex Cluster:

以root身份,配置集群模式为flex的。

# crsctl set cluster mode flex
5. Stop Oracle Clusterware by running the following command as root on each node in the cluster:

以root身份在一个节点执行停止crs的命令。

# crsctl stop crs
6. Start Oracle Clusterware by running the following command as root on each node in the cluster:

以root身份在一个节点执行启动crs的命令,即重启集群。

# crsctl start crs -wait

Note: Use the -wait option to display progress and status messages.

相关文章

  • 【Ora12c-GI】将Standard集群修改为Flex集群

    Oracle12C支持两种集群模式:Standard和Flex。11G即是Standard的;Flex是12C的新...

  • tomcat集群session复制问题

    问题未结 目的 将目前采用ip hash负载集群改为session复制的集群,实现用户登录访问不受节点重启影响。 ...

  • arangodb安装

    将配置文件里面改为endpoint = tcp://0.0.0.0:8529 单实例启动: 集群启动:

  • 大数据集群搭建2

    大数据集群搭建 本文档将搭建以下集群 hadoop 集群 zookeeper 集群 hbase 集群 spark ...

  • 大数据集群搭建

    大数据集群搭建 本文档将搭建以下集群 hadoop 集群 zookeeper 集群 hbase 集群 spark ...

  • 集群环境准备工作

    集群基础环境准备 1、修改主机名: vi /etc/sysconfig/network 将hostname 修改为...

  • redis cluster集群

    端口号:7000-7005 安装集群插件 集群节点准备 将节点加入集群管理 集群状态查看 集群节点管理 增加新的节...

  • 114.Livy配置

    环境CDH集群 把Livy包上传至CDH集群的节点 解压livy.tar.gz包 添加livy用户 livy修改为...

  • Redis集群备份与恢复

    1、将redis集群A下的数据文件备份 2、将备份文件恢复到redis集群B下。 1、备份redis集群A She...

  • redis cluster集群

    端口号:7000-7005 1. 安装集群插件 2. 集群节点准备 3. 将节点加入集群管理 4. 集群状态查看 ...

网友评论

      本文标题:【Ora12c-GI】将Standard集群修改为Flex集群

      本文链接:https://www.haomeiwen.com/subject/uszbcxtx.html