如今很多实验室都装备有大内存,高主频,多核心的高性能服务器,所以很多虚拟机的实验其实是可以在实验室完成的,而且相对于在公有云,其测试结果更准确。目前,我认为最好的方式就是在实验室搭建Vagrant+libvirt+KVM的虚拟机集群。本文讲介绍如何在CentOS/Fedora/Redhat上搭建Vagrant+libvirt的虚拟机集群。
特点
- 支持多个物理机上的虚拟机之间互相通信
- 通过Vagrantfile直接指定虚拟机启动的具体物理节点,可以有效的减少在公有云中虚拟机分配的物理节点拓扑不明确造成的实验误差。
- 通过编写Vagrantfile完成测试环境的快速搭建和部署
- 相对于Virtualbox,KVM虚拟机的性能较高
步骤
使用传统网络名称
- 在
/etc/default/grub
中的GRUB_CMDLINE_LINUX行中加入下面的两个选项net.ifnames=0 biosdevname=0。 - 运行grub2-mkconfig
- 修改
/etc/sysconfig/networt-script/ifcfg-x
里的内容并重命名为ifcfg-eth0
,ifcfg-eth1
- 重启机器
节点之间SSH互联
- 使用ssh-keygen生成本机密钥,使用ssh-copy-id username@hostname拷贝密钥
安装和配置libvirt
- 配置
/etc/hosts
注意,hostname的名字必须准确
- 多个节点间的TLS访问
参考:TLSSetup - Libvirt Wiki
安装和配置Vagrant
- 从官网安装Vagrant
rpm -ivh https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1_x86_64.rpm
- 安装vagrant-libvirt插件
dnf -y install qemu libvirt libvirt-devel ruby-devel gcc
vagrant plugin install vagrant-libvirt
编写Vagrantfile
其中,master为远程主机,slave为本地主机,远程主机在libvirt.host
中设置主机名称
# -*- mode: ruby -*-
# vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|
config.vm.define "master" do |master|
master.vm.box = "centos/7"
master.vm.provider :libvirt do |libvirt|
libvirt.host = "e2104"
libvirt.driver = "kvm"
libvirt.username = "root"
libvirt.password = "111111"
libvirt.connect_via_ssh = true
end
master.vm.network :public_network, :dev => "eth0", :mode => 'bridge', :ip => "10.0.2.111"
end
config.vm.define "slave" do |master|
master.vm.box = "centos/7"
master.vm.network :public_network, :dev => "eth0", :mode => 'bridge', :ip => "10.0.2.110"
end
end
启动虚拟机
vagrant up master
vagrant up slave
注意事项
- 在安装前如果已经安装了libvirt,则将libvirt完全卸载,并重启服务器
yum remove libvirt libvirt-client
reboot
yum install libvirt libvirt-devel
- TLS访问是密钥的cn必须是主机名,否则会出错
country = AU
state = Queensland
locality = Brisbane
organization = libvirt.org
cn = e2105 #(必须为主机名)
tls_www_client
encryption_key
signing_key