VM版本:VMware® Workstation 15 Pro
centos版本:CentOS-6.5-x86_64-bin-DVD1.iso
.centos网络配置
bigdata01: 192.168.2.128 192.168.2.1(网关)
bigdata02 192.168.2.129 192.168.2.1(网关)
bigdata03 192.168.2.130 192.168.2.1(网关)
a.编辑-虚拟机网络编辑器
VMNet8 (NAT)
i.子网 192.168.2.0
ii.更改设置-DHCP设置 :
起始192.168.2.128 bigdata01
结束192.168.2.254
iii.NAT设置:网关 192.168.2.1
b.配置windows访问虚拟机
网络连接-vmNet8-TCP/IP V4 - IP192.168.2.2 , 192.168.2.1(网关)
c.centos网卡
修改网卡配置 vi /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
HWADDR=00:0C:29:7A:D1:F2
TYPE=Ethernet
UUID=b129cd07-0a05-419e-a3a1-4d73d3f37917
ONBOOT=yes
---修改以下配置----
NM_CONTROLLED=yes
BOOTPROTO=static
IPADDR=192.168.2.128
GATEWAY=192.168.2.1
BROADCAST=192.168.2.255
DNS1=114.114.114.114 --如果域名无法解析,则加入dns设置(设置的内容:推荐是 当地的DNS)
DNS2=8.8.8.8
vi如果使用shift+z+z无法保存, 则使用 ":wq!"
d.通过网络名访问虚拟机 (192.168.2.128 ->bigdata01)
centos:
vi /etc/hosts,
追加:
192.168.2.128 bigdata01
windows:
C:\Windows\System32\drivers\etc\hosts
追加:
192.168.2.128 bigdata01
e.配置网络服务
service NetworkManager stop
/etc/init.d/network restart
chkconfig NetworkManager off
vi /etc/resolv.conf 追加nameserver 192.168.2.1
重启网卡 service network restart
4.防火墙:关闭
centos:
service iptables stop关闭防火墙
chkconfig iptables off禁止开机自启
查看防火墙状态service iptables status
windows:
网络-右键 属性-关闭防火墙
5.自动同步时间
安装用于同步时间的 ntp插件 :
yum -y install ntp ntpdate
ntpdate cn.pool.ntp.org
将系统时间写入硬盘时间
hwclock --systohc
FR:徐海涛(hunk Xu)
QQ技术交流群:386476712