OS:AIX 6100-07node
ORACLE 11.2.0.2 RAC for aix安裝檢測不經過oracle
有rfc1323, sb_max, tcp_sendspace, udp_sendspace, udp_recvspace警告!jsp
經過my oracle support查詢到該問題是11.2.0.3下的bug,bug號爲:bug 13077654tcp
On AIX, runInstaller complains network parameter setting: ipqmaxlen, rfc1323, sb_max, tcp_sendspace, udp_sendspace, udp_recvspaceide
Manually verified with 「ifconfig」 and 「/usr/sbin/no」, the setting is as expectedui
This bug is fixed in 12.1 and onwardspa
The workaround is to create a symbolic as root:.net
# ln -s /usr/sbin/no /etc/no
經過這樣link一下問題仍是不能解決。3d
On AIX, runInstaller complains network parameter setting even when they are bigger than required:code
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
再次檢查就經過了!