oracle 10g安装时参数校验,遇到提醒:
英文提示如下:
Checking Network Configuration requirements ...
Check complete. The overall result of this check is: Not executed <<<<
Recommendation: Oracle supports installations on systems with DHCP-assigned public IP addresses. However, the primary network interface on the system
should be configured with a static IP address in order for the Oracle Software to function properly. See the Installation Guide for more details on
installing the software on systems configured with DHCP.
中文提示如下:
正在检查网络配置需求...
检查完成。此次检查的总体结果为: 未执行 <<<<
建议案: Oracle 支持在具有 DHCP 分配的公共 IP 地址的系统上进行安装。但应使用静态 IP 地址来配置系统的主网络接口, 以便 Oracle 软件正常工作。
有关在配置有 DHCP 的系统上安装软件的详细信息, 请参阅 Installation Guide。
Checking Network Configuration requirements ...
Check complete. The overall result of this check is: Not executed <<<<
Recommendation: Oracle supports installations on systems with DHCP-assigned public IP addresses. However, the primary network interface on the system
should be configured with a static IP address in order for the Oracle Software to function properly. See the Installation Guide for more details on
installing the software on systems configured with DHCP.
中文提示如下:
正在检查网络配置需求...
检查完成。此次检查的总体结果为: 未执行 <<<<
建议案: Oracle 支持在具有 DHCP 分配的公共 IP 地址的系统上进行安装。但应使用静态 IP 地址来配置系统的主网络接口, 以便 Oracle 软件正常工作。
有关在配置有 DHCP 的系统上安装软件的详细信息, 请参阅 Installation Guide。
cd /etc/sysconfig/network-scripts/
[root@test network-scripts]# cat ifcfg-eth0
# Broadcom Corporation NetXtreme BCM5704 Gigabit Ethernet
DEVICE=eth0
BOOTPROTO=dhcp
HWADDR=00:14:C2:5C:86:07
ONBOOT=yes
# Broadcom Corporation NetXtreme BCM5704 Gigabit Ethernet
DEVICE=eth0
BOOTPROTO=dhcp
HWADDR=00:14:C2:5C:86:07
ONBOOT=yes
[root@test network-scripts]# cat ifcfg-eth1 --这块是主网卡,没有注明是否使用静态IP
# Broadcom Corporation NetXtreme BCM5704 Gigabit Ethernet
DEVICE=eth1
HWADDR=00:14:C2:5C:86:06
ONBOOT=yes
HOTPLUG=no
IPADDR=10.70.10.120
NETMASK=255.255.255.0
GATEWAY=10.70.10.254
# Broadcom Corporation NetXtreme BCM5704 Gigabit Ethernet
DEVICE=eth1
HWADDR=00:14:C2:5C:86:06
ONBOOT=yes
HOTPLUG=no
IPADDR=10.70.10.120
NETMASK=255.255.255.0
GATEWAY=10.70.10.254
[root@test network-scripts]# ifconfig
eth1 Link encap:Ethernet HWaddr 00:14:C2:5C:86:06
inet addr:10.70.10.120 Bcast:10.70.10.255 Mask:255.255.255.0
inet6 addr: fe80::214:c2ff:fe5c:8606/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:6887939 errors:0 dropped:0 overruns:0 frame.:0
TX packets:2168753 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:6328032096 (5.8 GiB) TX bytes:308981538 (294.6 MiB)
Interrupt:225 Memory:fdee0000-fdef0000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:68941 errors:0 dropped:0 overruns:0 frame.:0
TX packets:68941 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:295438854 (281.7 MiB) TX bytes:295438854 (281.7 MiB)
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:68941 errors:0 dropped:0 overruns:0 frame.:0
TX packets:68941 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:295438854 (281.7 MiB) TX bytes:295438854 (281.7 MiB)
[root@test network-scripts]# cat ifcfg-eth1
# Broadcom Corporation NetXtreme BCM5704 Gigabit Ethernet
DEVICE=eth1
BOOTPROTO=static --增加了这条, 解决了。
HWADDR=00:14:C2:5C:86:06
ONBOOT=yes
HOTPLUG=no
IPADDR=10.70.10.120
NETMASK=255.255.255.0
GATEWAY=10.70.10.254
# Broadcom Corporation NetXtreme BCM5704 Gigabit Ethernet
DEVICE=eth1
BOOTPROTO=static --增加了这条, 解决了。
HWADDR=00:14:C2:5C:86:06
ONBOOT=yes
HOTPLUG=no
IPADDR=10.70.10.120
NETMASK=255.255.255.0
GATEWAY=10.70.10.254
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/10173379/viewspace-732573/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/10173379/viewspace-732573/