我想使用 Vagrant 建立一個由 4 個 CentOS VM 組成的叢集。我在我的 Widnows 機器上安裝了 Vagrant 和 VirtualBox,下載了 CentOS 64 盒子並創建了叢集。腳步:
- 執行“vagrant box add --name centos65-base”
- 執行“vagrant init centos65-base”
編輯 VagrantFile 如下:
# -*- mode: ruby -*- # vi: set ft=ruby : Vagrant.configure(2) do |config| config.vm.define :node1 do |node1_config| node1_config.vm.box = "centos65_base" node1_config.vm.network "private_network", ip: "10.0.2.5" end config.vm.define :node2 do |node2_config| node2_config.vm.box = "centos65_base" node2_config.vm.network "private_network", ip: "10.0.2.6" end config.vm.define :node3 do |node3_config| node3_config.vm.box = "centos65_base" node3_config.vm.network "private_network", ip: "10.0.2.7" end config.vm.define :node4 do |node4_config| node4_config.vm.box = "centos65_base" node4_config.vm.network "private_network", ip: "10.0.2.8" end end
執行“vagrant up”
在第四步結束時,叢集的四個節點已配置並啟動,這很棒。我闖入了他們。我能夠從虛擬機器成功 ping 到 www.google.com 和我的主機。然而,從叢集中的一個節點 ping 到另一個節點會得到“目標主機不可達”錯誤。我運行“ifconfig”來查看正在使用的網路適配器。 eth0 用於 DHCP,eth1 用於靜態 IP。
[root@vagrant-centos65 vagrant]# ifconfig
eth0 Link encap:Ethernet HWaddr 08:00:27:4F:B8:06
inet addr:10.0.2.15 Bcast:10.0.2.255 Mask:255.255.255.0
inet6 addr: fe80::a00:27ff:fe4f:b806/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:1142 errors:0 dropped:0 overruns:0 frame:0
TX packets:672 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:106471 (103.9 KiB) TX bytes:84099 (82.1 KiB)
eth1 Link encap:Ethernet HWaddr 08:00:27:EC:A0:37
inet addr:10.0.2.5 Bcast:10.0.2.255 Mask:255.255.255.0
inet6 addr: fe80::a00:27ff:feec:a037/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:268 errors:0 dropped:0 overruns:0 frame:0
TX packets:7 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:27329 (26.6 KiB) TX bytes:482 (482.0 b)
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:8 errors:0 dropped:0 overruns:0 frame:0
TX packets:8 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:784 (784.0 b) TX bytes:784 (784.0 b)
知道如何解決這個問題嗎?我需要叢集中的虛擬機器能夠相互通訊。
答案1
我透過使用 192.168.33.10 - 192.168.33.13 IP 位址範圍而不是靜態 IP 配置的 10.0.2.5 - 10.0.2.8 解決了這個問題。
我懷疑使用 10.0.2.x 範圍會導致衝突,因為 DHCP 預設也在 Vagrant 中使用相同的範圍。