Mac 安裝虛擬機(jī)
通過(guò)Parallels 來(lái)創(chuàng)建虛擬機(jī)
選擇centos7 來(lái)安裝-
安裝完成后,進(jìn)行網(wǎng)絡(luò)設(shè)置
選擇網(wǎng)絡(luò)為Wi-FI
-
登錄服務(wù)器,設(shè)置網(wǎng)絡(luò)
查看mac本地地址
本機(jī)的ip是192.168.2.104,路由器地址是192.168.2.1,子網(wǎng)掩碼是255.255.255.0,DNS服務(wù)器地址是192.168.1.1和192.168.2.1
-
服務(wù)器網(wǎng)絡(luò)配置
修改vim /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE="eth0"
IPV6INIT="yes"
BOOTPROTO="static"
UUID="660433bd-5417-46b6-82dd-eca75e5ebf46"
ONBOOT="yes"
IPADDR=192.168.2.150
NETMAST=255.255.255.0
GATEWAY=192.168.2.1
DNS1=192.168.2.1
DNS2=192.168.1.1
重啟網(wǎng)路:
service network restart
-
設(shè)置主機(jī)名:
方法1
使用 hostnamectl set-hostname hadoop1 設(shè)置主機(jī)名為 hadoop01
方法2
修改 vim /etc/hostname重啟 reboot
設(shè)置虛擬主機(jī)IP地址與主機(jī)名的映射關(guān)系
- 修改vim /etc/hosts'
-
新增: 192.168.2.150 hadoop1
- 關(guān)閉防火墻
安裝firewalld
root執(zhí)行 # yum install firewalld firewall-config運(yùn)行、停止职员、禁用firewalld
啟動(dòng):# systemctl start firewalld
查看狀態(tài):# systemctl status firewalld 或者 firewall-cmd --state
停止:# systemctl disable firewalld
禁用:# systemctl stop firewalld
共享網(wǎng)絡(luò),不設(shè)置固定IP
上面的方法屬于設(shè)置固定IP,我們可以設(shè)置共享網(wǎng)絡(luò)的虛擬機(jī):
-
設(shè)置虛擬機(jī)為共享網(wǎng)絡(luò)
- 設(shè)置
/etc/sysconfig/network-scripts/ifcfg-eth0
文件內(nèi)容為:
DEVICE="eth0"
IPV6INIT="yes"
#BOOTPROTO="static"
BOOTPROTO="dhcp"
UUID="660433bd-5417-46b6-82dd-eca75e5ebf46"
ONBOOT="yes"
#IPADDR=192.168.2.150
NETMAST=255.255.255.0
#GATEWAY=192.168.2.1
#DNS1=192.168.2.1
#DNS2=192.168.1.1
重啟網(wǎng)絡(luò):
service network restart