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

相关文章

linux报错INFO:task xxxxxx:634 blocked for more than 120 seconds.三种解决方式

《linux报错INFO:taskxxxxxx:634blockedformorethan120seconds.三种解决方式》文章描述了一个Linux最小系统运行时出现的“hung_ta... 目录1.问题描述2.解决办法2.1 缩小文件系统缓存大小2.2 修改系统IO调度策略2.3 取消120秒时间限制3

Oracle查询优化之高效实现仅查询前10条记录的方法与实践

《Oracle查询优化之高效实现仅查询前10条记录的方法与实践》:本文主要介绍Oracle查询优化之高效实现仅查询前10条记录的相关资料,包括使用ROWNUM、ROW_NUMBER()函数、FET... 目录1. 使用 ROWNUM 查询2. 使用 ROW_NUMBER() 函数3. 使用 FETCH FI

数据库oracle用户密码过期查询及解决方案

《数据库oracle用户密码过期查询及解决方案》:本文主要介绍如何处理ORACLE数据库用户密码过期和修改密码期限的问题,包括创建用户、赋予权限、修改密码、解锁用户和设置密码期限,文中通过代码介绍... 目录前言一、创建用户、赋予权限、修改密码、解锁用户和设置期限二、查询用户密码期限和过期后的修改1.查询用

解决systemctl reload nginx重启Nginx服务报错:Job for nginx.service invalid问题

《解决systemctlreloadnginx重启Nginx服务报错:Jobfornginx.serviceinvalid问题》文章描述了通过`systemctlstatusnginx.se... 目录systemctl reload nginx重启Nginx服务报错:Job for nginx.javas

Oracle数据库使用 listagg去重删除重复数据的方法汇总

《Oracle数据库使用listagg去重删除重复数据的方法汇总》文章介绍了在Oracle数据库中使用LISTAGG和XMLAGG函数进行字符串聚合并去重的方法,包括去重聚合、使用XML解析和CLO... 目录案例表第一种:使用wm_concat() + distinct去重聚合第二种:使用listagg,

oracle中exists和not exists用法举例详解

《oracle中exists和notexists用法举例详解》:本文主要介绍oracle中exists和notexists用法的相关资料,EXISTS用于检测子查询是否返回任何行,而NOTE... 目录基本概念:举例语法pub_name总结 exists (sql 返回结果集为真)not exists (s

VMWare报错“指定的文件不是虚拟磁盘“或“The file specified is not a virtual disk”问题

《VMWare报错“指定的文件不是虚拟磁盘“或“Thefilespecifiedisnotavirtualdisk”问题》文章描述了如何修复VMware虚拟机中出现的“指定的文件不是虚拟... 目录VMWare报错“指定的文件不是虚拟磁盘“或“The file specified is not a virt

Oracle的to_date()函数详解

《Oracle的to_date()函数详解》Oracle的to_date()函数用于日期格式转换,需要注意Oracle中不区分大小写的MM和mm格式代码,应使用mi代替分钟,此外,Oracle还支持毫... 目录oracle的to_date()函数一.在使用Oracle的to_date函数来做日期转换二.日

oracle数据库索引失效的问题及解决

《oracle数据库索引失效的问题及解决》本文总结了在Oracle数据库中索引失效的一些常见场景,包括使用isnull、isnotnull、!=、、、函数处理、like前置%查询以及范围索引和等值索引... 目录oracle数据库索引失效问题场景环境索引失效情况及验证结论一结论二结论三结论四结论五总结ora

Oracle Expdp按条件导出指定表数据的方法实例

《OracleExpdp按条件导出指定表数据的方法实例》:本文主要介绍Oracle的expdp数据泵方式导出特定机构和时间范围的数据,并通过parfile文件进行条件限制和配置,文中通过代码介绍... 目录1.场景描述 2.方案分析3.实验验证 3.1 parfile文件3.2 expdp命令导出4.总结