oracle udp sendspace,rfc1323, sb_max, tcp_sendspace, udp_sendspace, udp_recvspace报错

2023-10-30 15:20

本文主要是介绍oracle udp sendspace,rfc1323, sb_max, tcp_sendspace, udp_sendspace, udp_recvspace报错,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

OS:AIX 6100-07

ORACLE 11.2.0.2 RAC for aix安装检测不通过

有rfc1323, sb_max, tcp_sendspace, udp_sendspace, udp_recvspace警告!

0818b9ca8b590ca3270a3433284dd417.png

通过my oracle support查询到该问题是11.2.0.3下的bug,bug号为:bug 13077654

PRVE-0273 : The value of network parameter “udp_sendspace” for interface “en0″ is not configured to the expected value on node “racnode1″

bug 13077654 - AIX specific

On AIX, runInstaller complains network parameter setting: ipqmaxlen, rfc1323, sb_max, tcp_sendspace, udp_sendspace, udp_recvspace

INFO: *********************************************

INFO: Network parameter -

rfc1323: Checks if the network parameter is set correctly on the system

INFO: Severity:IGNORABLE

INFO: OverallStatus:VERIFICATION_FAILED

INFO: ―――――――――――――――�

INFO: Verification Result for Node:racnode1

INFO: Expected Value:1

INFO: Actual Value:en2=0

INFO: Error Message:

PRVE-0273 : The value of network parameter “rfc1323″ for interface “en2″ is not configured to the expected value on node “racnode1″.[Expected="1"; Found="en2=0"]

Manually verified with “ifconfig” and “/usr/sbin/no”, the setting is as expected

This bug is fixed in 12.1 and onward

The workaround is to create a symbolic as root:

# ln -s /usr/sbin/no /etc/no

通过这样link一下问题还是不能解决。

bug 13531373 - AIX specific

On AIX, runInstaller complains network parameter setting even when they are bigger than required:

INFO: *********************************************

INFO: Network parameter -

tcp_sendspace: Checks if the network parameter is set correctly on the system

INFO: Severity:IGNORABLE

INFO: OverallStatus:VERIFICATION_FAILED

INFO: ―――――――――――――――�

INFO: Verification Result for Node:racnode1

INFO: Expected Value:1

INFO: Actual Value:en2=0

INFO: Error Message:

PRVE-0273 : The value of network parameter “tcp_sendspace” for interface “en10″ is not configured to the expected value on node “racnode1″.[

Expected="

65536";

Found="en10=

262144"]

As you can see, the expected value is 65536, and the current value is 262144 is satisfies the requirement.

The fix is included in 11.2.0.3 GI PSU2, 11.2.0.4 and above, the error can be ignored.

通过再次查询,有这样的解决方法:

1)修改:/etc/rc.net  添加如下:

if [ -f /usr/sbin/no ] ; then

/usr/sbin/no -p -o tcp_ephemeral_low=9000

/usr/sbin/no -p -o udp_ephemeral_low=9000

/usr/sbin/no -p -o tcp_ephemeral_high=65500

/usr/sbin/no -p -o udp_ephemeral_high=65500

/usr/sbin/no -p -o udp_sendspace=65536

/usr/sbin/no -p -o udp_recvspace=655360

/usr/sbin/no -p -o tcp_sendspace=65536

/usr/sbin/no -p -o tcp_recvspace=65536

/usr/sbin/no -p -o rfc1323=1

/usr/sbin/no -p -o sb_max=4194304

/usr/sbin/no -r -o ipqmaxlen=512

fi

2) root用户下建:

ln -s /usr/sbin/no /etc/no

再次检查就通过了!

这篇关于oracle udp sendspace,rfc1323, sb_max, tcp_sendspace, udp_sendspace, udp_recvspace报错的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/308819

相关文章

Oracle type (自定义类型的使用)

oracle - type   type定义: oracle中自定义数据类型 oracle中有基本的数据类型,如number,varchar2,date,numeric,float....但有时候我们需要特殊的格式, 如将name定义为(firstname,lastname)的形式,我们想把这个作为一个表的一列看待,这时候就要我们自己定义一个数据类型 格式 :create or repla

ORACLE 11g 创建数据库时 Enterprise Manager配置失败的解决办法 无法打开OEM的解决办法

在win7 64位系统下安装oracle11g,在使用Database configuration Assistant创建数据库时,在创建到85%的时候报错,错误如下: 解决办法: 在listener.ora中增加对BlueAeri-PC或ip地址的侦听,具体步骤如下: 1.启动Net Manager,在“监听程序”--Listener下添加一个地址,主机名写计

【Go】go连接clickhouse使用TCP协议

离开你是傻是对是错 是看破是软弱 这结果是爱是恨或者是什么 如果是种解脱 怎么会还有眷恋在我心窝 那么爱你为什么                      🎵 黄品源/莫文蔚《那么爱你为什么》 package mainimport ("context""fmt""log""time""github.com/ClickHouse/clickhouse-go/v2")func main(

Oracle Start With关键字

Oracle Start With关键字 前言 旨在记录一些Oracle使用中遇到的各种各样的问题. 同时希望能帮到和我遇到同样问题的人. Start With (树查询) 问题描述: 在数据库中, 有一种比较常见得 设计模式, 层级结构 设计模式, 具体到 Oracle table中, 字段特点如下: ID, DSC, PID; 三个字段, 分别表示 当前标识的 ID(主键), DSC 当

Jenkins 插件 地址证书报错问题解决思路

问题提示摘要: SunCertPathBuilderException: unable to find valid certification path to requested target...... 网上很多的解决方式是更新站点的地址,我这里修改了一个日本的地址(清华镜像也好),其实发现是解决不了上述的报错问题的,其实,最终拉去插件的时候,会提示证书的问题,几经周折找到了其中一遍博文

oracle分页和mysql分页

mysql 分页 --查前5 数据select * from table_name limit 0,5 select * from table_name limit 5 --limit关键字的用法:LIMIT [offset,] rows--offset指定要返回的第一行的偏移量,rows第二个指定返回行的最大数目。初始行的偏移量是0(不是1)。   oracle 分页 --查前1-9

2024.9.8 TCP/IP协议学习笔记

1.所谓的层就是数据交换的深度,电脑点对点就是单层,物理层,加上集线器还是物理层,加上交换机就变成链路层了,有地址表,路由器就到了第三层网络层,每个端口都有一个mac地址 2.A 给 C 发数据包,怎么知道是否要通过路由器转发呢?答案:子网 3.将源 IP 与目的 IP 分别同这个子网掩码进行与运算****,相等则是在一个子网,不相等就是在不同子网 4.A 如何知道,哪个设备是路由器?答案:在 A

图解TCP三次握手|深度解析|为什么是三次

写在前面 这篇文章我们来讲解析 TCP三次握手。 TCP 报文段 传输控制块TCB:存储了每一个连接中的一些重要信息。比如TCP连接表,指向发送和接收缓冲的指针,指向重传队列的指针,当前的发送和接收序列等等。 我们再来看一下TCP报文段的组成结构 TCP 三次握手 过程 假设有一台客户端,B有一台服务器。最初两端的TCP进程都是处于CLOSED关闭状态,客户端A打开链接,服务器端

【Python报错已解决】AttributeError: ‘list‘ object has no attribute ‘text‘

🎬 鸽芷咕:个人主页  🔥 个人专栏: 《C++干货基地》《粉丝福利》 ⛺️生活的理想,就是为了理想的生活! 文章目录 前言一、问题描述1.1 报错示例1.2 报错分析1.3 解决思路 二、解决方法2.1 方法一:检查属性名2.2 步骤二:访问列表元素的属性 三、其他解决方法四、总结 前言 在Python编程中,属性错误(At

DBeaver 连接 MySQL 报错 Public Key Retrieval is not allowed

DBeaver 连接 MySQL 报错 Public Key Retrieval is not allowed 文章目录 DBeaver 连接 MySQL 报错 Public Key Retrieval is not allowed问题解决办法 问题 使用 DBeaver 连接 MySQL 数据库的时候, 一直报错下面的错误 Public Key Retrieval is