【翻译自mos文章】私有网络所用的协议 与 Oracle RAC
说的太经典了,不敢翻译。直接上原文。
来源于:
Network Protocols and Real Application Clusters (文档 ID 278132.1)
PURPOSE
-------
Purpose of this document is to give DBAs and Systems Administrators interested
in Real Application Clusters an overview and a comparison of network protocols
available.
SCOPE & APPLICATION
-------------------
DBAs and IT professionals may use this note for their physical cluster layout
and the options they have available on their platform.
NETWORK PROTOCOLS AND REAL APPLICATION CLUSTERS
-----------------------------------------------
With Real Application Clusters, there are many different interconnect protocols
available to use with the high speed interconnect.
On Unix platforms, Oracle typically recommends Infiniband (RDS) where it is certified. See
Note: 751343.1 for more information on the RDS protocol. Here are the hardware and RAC protocol
alternatives for each platform (not including RDS):
Operating System Clusterware Network Hardware RAC Protocol
---------------- ----------- ---------------- --------
HP OpenVMS HP OpenVMS Gigabit Ethernet TCP (UDP for 10gR1 and above)
HP Tru64 HP TruCluster Memory Channel RDG
HP Tru64 HP TruCluster Memory Channel UDP
HP Tru64 HP TruCluster Gigabit Ethernet RDG
HP Tru64 HP TruCluster Gigabit Ethernet UDP
HP-UX Oracle Clusterware Hyperfabric UDP
HP-UX Oracle Clusterware Gigabit Ethernet UDP
HP-UX HP ServiceGuard Hyperfabric UDP
HP-UX HP ServiceGuard Gigabit Ethernet UDP
HP-UX Veritas Cluster Gigabit Ethernet LLT
HP-UX Veritas Cluster Gigabit Ethernet UDP
IBM AIX Oracle Clusterware Gigabit Ethernet (FDDI) UDP
IBM AIX HACMP Gigabit Ethernet (FDDI) UDP
Linux Oracle Clusterware Gigabit Ethernet UDP
Microsoft Windows Oracle Clusterware Gigabit Ethernet TCP
Sun Solaris Oracle Clusterware Gigabit Ethernet UDP
Sun Solaris Fujitsu Primecluster Gigabit Ethernet ICF
Sun Solaris Sun Cluster SCI Interconnect RSM
Sun Solaris Sun Cluster Firelink interconnect RSM
Sun Solaris Sun Cluster Gigabit Ethernet UDP
Sun Solaris Veritas Cluster Gigabit Ethernet LLT
Sun Solaris Veritas Cluster Gigabit Ethernet UDP
Oracle Corporation primarily tests and supports the RDS and UDP network libraries (and
TCP for Windows). For other proprietary protocols (RDG, ICF, and LLT), the
cluster vendor writes and supports the network libraries.
Oracle Corporation has done extensive testing on the Oracle provided RDS and UDP
libraries (and TCP for Windows). Based on this testing and extensive experience
with production customer deployments, at this time Oracle Support strongly recommends
the use of RDS or UDP (or TCP on Windows) for RAC environments.
RE-LINKING TO CHANGE PROTCOLS
-----------------------------
To switch to the udp protocol, shut down the instances and re-link on each node
with:
cd $ORACLE_HOME/rdbms/lib
make -f ins_rdbms.mk ipc_g ioracle
9i command:
cd $ORACLE_HOME/rdbms/lib
make -f ins_rdbms.mk ipc_udp ioracle
To confirm that the UDP protcol is being used, run the 'oradebug ipc' command
as described in Note 181489.1 . Note 181489.1 also contains some tuning
recommendations for various protocols.
BEST PRACTICES FOR UDP
----------------------
- Have at least a gigabit ethernet for optimal performance
- Do not use crossover cables (use a switch)
- Increase the udp buffer sizes to the OS maximum
- Turn on udp checksumming
RELATED DOCUMENTS
-----------------
Note 181489.1 - Tuning Inter-Instance Performance in RAC and OPS
Note 751343.1 - RAC Support for RDS Over Infiniband
Oracle Real Application Clusters Installation and Configuration Guide
【翻译自mos文章】私有网络所用的协议 与 Oracle RAC的更多相关文章
- 【翻译自mos文章】在RHEL7/OL7上安装Oracle 12.1.0.2的server端或者client时,报须要"compat-libstdc++"包
在RHEL7/OL7上安装Oracle 12.1.0.2的server端或者client时,报须要"compat-libstdc++"包 来源于: Installation of ...
- 【翻译自mos文章】11.2.0.4及更高版本号的asm实例中MEMORY_TARGET 和 MEMORY_MAX_TARGET的默认值和最小值
[翻译自mos文章]11.2.0.4及更高版本号的asm实例中MEMORY_TARGET 和 MEMORY_MAX_TARGET的默认值和最小值 来源于: Default and Minimum ME ...
- 【翻译自mos文章】job 不能自己主动执行--这是另外一个mos文章,本文章有13个解决方法
job 不能自己主动执行--这是另外一个mos文章 參考原文: Jobs Not Executing Automatically (Doc ID 313102.1) 适用于: Oracle Datab ...
- 【翻译自mos文章】oracle db 中的用户账户被锁--查看oracle用户的尝试次数
參考原文: Users Accounts Getting Locked. (Doc ID 791037.1) 事实上这个文章是为oracle 别的软件产品写的,只是涉及到user 锁定问题.那还是跟d ...
- 【翻译自mos文章】改变数据库用户sysman(该用户是DB Control Repository 的schema)password的方法
改变数据库用户sysman(该用户是DB Control Repository 的schema)password的方法 參考原文: How To Change the Password of the ...
- 【翻译自mos文章】使用asmcmd命令在本地和远程 asm 实例之间 拷贝asm file的方法
使用asmcmd命令在本地和远程 asm 实例之间 拷贝asm file的方法 參考原文: How to Copy asm files between remote ASM instances usi ...
- 【翻译自mos文章】Oracle GoldenGate 怎么在源头的传输进程和目的端的server/collector进程之间分配 port?
Oracle GoldenGate 怎么在源头的传输进程和目的端的server/collector进程之间分配 port? 来源于: How Does GoldenGate Allocates Por ...
- 【翻译自mos文章】oracle支持在RDBMS HOME 下的 符号链接( Symbolic Links)吗?
oracle支持在RDBMS HOME 下的 符号链接( Symbolic Links)吗? 參考原文: Does Oracle support Symbolic Links in the RDBMS ...
- 【翻译自mos文章】11gR2中的asm后台进程
11gR2中的asm后台进程 參考原文: ASM Background Processes in 11.2 (Doc ID 1641678.1) 适用于: Oracle Database - Ente ...
随机推荐
- div隐藏但是依然占位置
<!doctype html> <html> <head> <meta charset="utf-8"> <script ty ...
- django 获得请求头
django 获得到的请求头封装在 request 的 META 中,为一个 dict 以下选自官方文档: https://docs.djangoproject.com/zh-hans/2.0/ref ...
- UE4.18.3 C++项目无法打开C++类问题(VS2017)
升级VS2017后,突然出现UE4创建C++项目无法打开VS问题.经过测试为VS2017升级后C++的桌面开发工具集采用了VC++2017 v141工具集,而UE4对该工具集尚未兼容,故找不到vs打开 ...
- HDU Integer's Power(容斥原理)
题意 求[l,r]的最大指数和(1<=l,r<=10^18) 最大指数和(如64=8^2=4^3=2^6,所以64的最大指数和是6) 题解 很明显我们可以先求出[1,n]的最大指数和,然后 ...
- 单机Mongo复制集安装配置(数据库版本:4.x)
官方文档: https://docs.mongodb.com/manual/tutorial/deploy-replica-set-with-keyfile-access-control/#dep ...
- js 判断是否滚动到底部
$(window).scroll(function(){ var scrollTop = $(this).scrollTop(); //scrollTop() 方法返回或设置匹配元素的滚动条的垂直位置 ...
- how to deal with "no such file error or diretory" error for a new programmer in QT creator
when i try to develop a hello demo in QT creator with the code following : #include<QApplication& ...
- AppCan中标首都机场移动平台项目
近日.正益无线AppCan依托东方航空.吉祥航空.国家电网.中化集团等大客户项目的丰富成功经验,凭借企业移动信息化建设的良好口碑.强大的移动化实施部署经验和高速响应的技术团队,在与多家国内外移动厂商比 ...
- Bootstrap组件之输入框组
.input-group--设置div为输入框组: .input-group-lg..input-group-sm..input-group-xs--改变输入框组的尺寸: .input-group-a ...
- [android]DES/3DES/AES加密方式
DES 支持8位加密解密,3Des支持24位,Aes支持32位.3Des是Des算法做三次.位数的单位是字节byte.不是bits. 3Des是把24位分成3组.第一组八位用来加密,第二组8位用于解密 ...