oracle 之 CLUSTER_INTERCONNECTS is not set to the recommended value

简介:

问题:Database parameter CLUSTER_INTERCONNECTS is not set to the recommended value

在Oracle实际应用程序集群环境中可以使用cluster_interconnect,以指示可用于数据库通信的集群互连。如果需要覆盖为数据库流量配置的默认互连(存储在群集注册表中),请使用此参数。这个过程也可能对数据仓库系统有用,因为数据仓库系统降低了可用性需求和高互连带宽需求。

cluster_interconnect具体覆盖了以下内容:
由oifcfg在OCR中存储的网络分类。
由Oracle选择的默认互连。


适用版本:
Oracle Database - Enterprise Edition - Version 11.2.0.4 and later
Oracle Exadata Storage Server Software - Version 12.1.1.1.0 and later
Oracle SuperCluster Specific Software - Version 1.x and later
Information in this document applies to any platform.

Solition:

$ $ORACLE_HOME/bin/oifcfg getif
bondeth0 10.152.224.0 global public
ib0 192.168.8.1 global cluster_interconnect,asm
ib1 192.168.8.2 global cluster_interconnect,asm

$ ifconfig ib0
ib0 Link encap:InfiniBand HWaddr 80:00:00:48:FE:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00
inet addr:192.168.9.203 Bcast:192.168.11.255 Mask:255.255.252.0
inet6 addr: fe80::210:e000:133:296d/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:7000 Metric:1
RX packets:34872644 errors:0 dropped:0 overruns:0 frame:0
TX packets:33220479 errors:0 dropped:2 overruns:0 carrier:0
collisions:0 txqueuelen:4096
RX bytes:12937195873 (12.0 GiB) TX bytes:11896620848 (11.0 GiB)

$ ifconfig ib1
ib1 Link encap:InfiniBand HWaddr 80:00:00:49:FE:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00
inet addr:192.168.9.204 Bcast:192.168.11.255 Mask:255.255.252.0
inet6 addr: fe80::210:e000:133:296e/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:7000 Metric:1
RX packets:17880631 errors:0 dropped:0 overruns:0 frame:0
TX packets:29918338 errors:0 dropped:9 overruns:0 carrier:0
collisions:0 txqueuelen:4096
RX bytes:5098988721 (4.7 GiB) TX bytes:100635031058 (93.7 GiB)

$ sqlplus / as sysdba

SQL*Plus: Release 12.1.0.2.0 Production on Thu Jan 25 13:09:39 2018

Copyright (c) 1982, 2014, Oracle. All rights reserved.

Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
Advanced Analytics and Real Application Testing options

SQL> alter system set CLUSTER_INTERCONNECTS='192.168.9.203:192.168.9.204' sid='<instanceName>' scope=spfile;

System altered.

SQL> exit
Disconnected from Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
Advanced Analytics and Real Application Testing options



本文转自 张冲andy 博客园博客,原文链接:http://www.cnblogs.com/andy6/p/8580718.html   ,如需转载请自行联系原作者

相关文章
成功解决A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,co
成功解决A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,co
|
3月前
|
Java 应用服务中间件 nginx
【Azure 环境】Azure应用程序网关设置set_Cookie=key=value; SameSite=Strict; HTTPOnly,AzureAD登录使用cookie时使用不了的案例记录
【Azure 环境】Azure应用程序网关设置set_Cookie=key=value; SameSite=Strict; HTTPOnly,AzureAD登录使用cookie时使用不了的案例记录
|
4月前
|
数据处理 Python
【Python】已解决:SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFram
【Python】已解决:SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFram
519 1
content‘ is declared but its value is never read.富文本编辑器中这里必须的script中添加setup,引入到set当中时,带title的富文本写法
content‘ is declared but its value is never read.富文本编辑器中这里必须的script中添加setup,引入到set当中时,带title的富文本写法
|
5月前
|
缓存 NoSQL 关系型数据库
Redis第二课,1.set key value(设置对应的key和value)2.get key(得到value值)Redis全局命令(支持很多的数据结构)3.keys(用来查询当前
Redis第二课,1.set key value(设置对应的key和value)2.get key(得到value值)Redis全局命令(支持很多的数据结构)3.keys(用来查询当前
|
6月前
|
Oracle 关系型数据库
Introduction to Oracle Recommended Patches
Introduction to Oracle Recommended Patches
46 0
|
6月前
What value should kernel parameter AIO-MAX-NR be set to ?
What value should kernel parameter AIO-MAX-NR be set to ?
60 0
|
6月前
|
SQL Oracle 关系型数据库
Oracle SQL*Plus的SET命令:你的数据库会话“调色板”
【4月更文挑战第19天】Oracle SQL*Plus的SET命令是数据库会话的“调色板”,用于设置输出格式、反馈信息和各种偏好。它能调整PAGESIZE和LINESIZE以优化显示,控制ECHO和FEEDBACK开关以定制反馈,以及统计命令执行时间(TIMING)和调试SQL(VERIFY)。更高级的选项如HEADING和COLSEP可改善输出的可读性。通过灵活运用SET命令,能提升工作效率和体验,是数据库管理员和开发者的必备工具。
|
JavaScript API
【Vue】Cannot set reactive property on undefined,null,or primitive value:undefined
【Vue】Cannot set reactive property on undefined,null,or primitive value:undefined
286 0
|
SQL Oracle 关系型数据库
Oracle中,UPDATE SET子句
Oracle中,UPDATE SET子句
547 1

推荐镜像

更多