【二】配置网络
首先配置网络,配好了网络后,以后操作都使用SecureCRT字符界面。
2.1配置虚机网卡模式
Node1:
1)两台虚机(Node1、Node2)每台使用两个网卡
网卡1(公网)配置成Host-Only模式,网卡2(私网)配置成内部网络模式
Node2:同上
2.2修改IP地址及主机名
启动两节点至图形界面,开一个终端窗口,使用 vi 编辑下列网络配置文件:
/etc/sysconfig/network 主机名配置文件/etc/sysconfig/network-scripts/ifcfg-eth0 eth0网卡配置文件/etc/sysconfig/network-scripts/ifcfg-eth1 eth1网卡配置文件
1)主机名必须是唯一的,主机名不能重名,切记!!!
2) MAC地址不需要删改。
Node1:
#vi /etc/sysconfig/networkNETWORKING=yesNETWORKING_IPV6=noHOSTNAME=tim1
#vi /etc/sysconfig/network-scripts/ifcfg-eth0# Intel Corporation 82540EM Gigabit Ethernet ControllerDEVICE=eth0BOOTPROTO=staticHWADDR=08:00:27:7A:C6:9CIPADDR=192.168.3.88NETMASK=255.255.255.0GATEWAY=192.168.3.1onBOOT=yes
#vi /etc/sysconfig/network-scripts/ifcfg-eth1# Intel Corporation 82540EM Gigabit Ethernet ControllerDEVICE=eth1BOOTPROTO=staticIPADDR=10.10.10.1NETMASK=255.255.255.0onBOOT=yesHWADDR=08:00:27:ee:fd:51
Node2:
#vi /etc/sysconfig/networkNETWORKING=yesNETWORKING_IPV6=noHOSTNAME=tim2
#vi /etc/sysconfig/network-scripts/ifcfg-eth0# Intel Corporation 82540EM Gigabit Ethernet ControllerDEVICE=eth0BOOTPROTO=staticHWADDR=08:00:27:70:1D:15IPADDR=192.168.3.99NETMASK=255.255.255.0GATEWAY=192.168.3.1onBOOT=yes
#vi /etc/sysconfig/network-scripts/ifcfg-eth1# Intel Corporation 82540EM Gigabit Ethernet ControllerDEVICE=eth1BOOTPROTO=staticIPADDR=10.10.10.2NETMASK=255.255.255.0onBOOT=yesHWADDR=08:00:27:60:ee:a3
两节点配置好后,重新启动网络
Node1:
[root@tim1 ~]#service network restart[root@tim1 ~]#hostname tim1[root@tim1 ~]#hostname
Node2:
[root@tim2 ~]#hostname tim2[root@tim2 ~]#service network restart[root@tim2 ~]#hostname
2.3配置windows的虚机网卡,并连通SecureCRT软件
检查win7本地网卡和虚机网卡(公网)是同一个网段
测试win7本地可以联通虚机
2.4使用SecureCRT登录
2.5更改/etc/hosts配置文件
Node1:
[root@tim1 ~]#vi /etc/hosts# Do not remove the following line, or various programs# that require network functionality will fail.127.0.0.1 localhost192.168.3.88 tim1192.168.3.188 tim1-vip10.10.10.1 tim1-priv192.168.3.99 tim2192.168.3.199 tim2-vip10.10.10.2 tim2-priv192.168.3.89 rac-scan
Node2:同上
2.6修改启动模式
关闭sendmail服务,设定启动模式3,重启系统。
Node1:
1)关闭sendmail服务,使启动更迅速。
[root@tim1 ~]#chkconfig sendmail off
2)将启动运行级别改为3, 不启动图形(省内存,省时间)
[root@tim1 ~]#vi /etc/inittab[root@tim1 ~]#shutdown -h now
Node2:同上
the end !!!
@jackman 共筑美好!
,