小編給大家分享一下Centos如何制作Openstack虛擬機(jī)鏡像,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
成都創(chuàng)新互聯(lián)公司專注骨干網(wǎng)絡(luò)服務(wù)器租用十載,服務(wù)更有保障!服務(wù)器租用,德陽(yáng)電信服務(wù)器托管 成都服務(wù)器租用,成都服務(wù)器托管,骨干網(wǎng)絡(luò)帶寬,享受低延遲,高速訪問(wèn)。靈活、實(shí)現(xiàn)低成本的共享或公網(wǎng)數(shù)據(jù)中心高速帶寬的專屬高性能服務(wù)器。
# virsh vol-create-as lv3 Centos7.img 50G --format qcow2
Vol Centos7.img created
此處選擇qcow2格式,創(chuàng)建出來(lái)的img會(huì)較小,成功配置完成后大概在1.2G左右;如果是raw格式,創(chuàng)建完成img大概在51G左右。
# virt-install --connect qemu:///system -n Centos7 -r 4096 -f /vg0_lv3/Centos7.img --vnc --vcpus=2 --network bridge=br0 -c /vg0_lv1/openstack-image/CentOS-7-x86_64-Everything-1511.iso
Starting install...
Creating domain... | 0 B 00:00
Cannot open display:
Run 'virt-viewer --help' to see a full list of available command line options
Domain installation still in progress. You can reconnect to
the console to complete the installation process.
連接vnc,圖形化界面安裝centos7.2的系統(tǒng),選擇最小化安裝,系統(tǒng)安裝完再繼續(xù)以下步驟。
# yum install acpid # systemctl enable acpid
# yum install http://download.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-7.noarch.rpm # yum install cloud-init
修改配置
# vi /etc/cloud/cloud.cfg
users: root
# echo "NOZEROCONF=yes" >> /etc/sysconfig/network
刪除rhgb quiet
添加 console=tty0console=ttyS0,115200n8
# vi /etc/default/grub
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)"
GRUB_DEFAULT=saved
GRUB_DISABLE_SUBMENU=true
GRUB_TERMINAL_OUTPUT="console"
GRUB_CMDLINE_LINUX="crashkernel=auto rd.lvm.lv=centos/root console=tty0 console=ttyS0,115200n8"
GRUB_DISABLE_RECOVERY="true"
讓配置生效
# grub2-mkconfig -o /boot/grub2/grub.cfg
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-3.10.0-327.el7.x86_64
Found initrd image: /boot/initramfs-3.10.0-327.el7.x86_64.img
Found linux image: /boot/vmlinuz-0-rescue-8ad37cd5879289675a6517371665929a
Found initrd image: /boot/initramfs-0-rescue-8ad37cd5879289675a6517371665929a.img
done
8、刪除網(wǎng)卡配置信息
刪除mac信息和 UUID
# cd /etc/sysconfig/network-scripts/ # vi ifcfg-ens3
BOOTPROTO=dhcp
ONBOOT=yes
# shutdown -h now
# source ~/admin-openrc.sh # openstack image create "Centos-7.2-init" \ --file /data/Centos-7.2-init.img \ --disk-format qcow2 --container-format bare \ --public
11、創(chuàng)建云主機(jī),查看日志
注意:
虛擬機(jī)創(chuàng)建完成后,在修改配置之前最好先給虛擬機(jī)做個(gè)快照
在創(chuàng)建centos6.6鏡像時(shí),安裝cloud-init來(lái)獲取公鑰可能會(huì)導(dǎo)致無(wú)法連接進(jìn)虛擬機(jī)的情況,所以,最好省去第5步。
# virsh vol-create-as lv3 Centos6.6.img 50G --format qcow2
2、創(chuàng)建虛擬機(jī)
# virt-install --connect qemu:///system -n Centos6.6 -r 4096 -f Centos6.6.img --vnc --vcpus=2 --network bridge=br0 -c /vg0_lv1/CentOS-6.6-x86_64-bin-DVD1.iso
Starting install...
Creating domain... | 0 B 00:00
Cannot open display:
Run 'virt-viewer --help' to see a full list of available command line options
Domain installation still in progress. You can reconnect to
the console to complete the installation process.
連接vnc,圖形化界面安裝centos6.6的系統(tǒng),系統(tǒng)安裝完再繼續(xù)以下步驟。
4、安裝 ACPI 服務(wù)
為了讓虛擬化層能重啟和關(guān)閉虛擬機(jī),必須在虛擬機(jī)內(nèi)安裝并運(yùn)行 acpid
服務(wù)。
在 CentOS虛擬機(jī)內(nèi)運(yùn)行以下命令安裝 ACPI 服務(wù)并配置為系統(tǒng)啟動(dòng)時(shí)自動(dòng)啟動(dòng)。
# yum install acpid # chkconfig acpid on
安裝完cloud-init可能會(huì)導(dǎo)致無(wú)法連接進(jìn)虛擬機(jī)的情況,所以,此步驟最好不做,有待繼續(xù)學(xué)習(xí)研究……
cloud-init
包自動(dòng)從元數(shù)據(jù)服務(wù)獲取公鑰并保存到賬戶,你可以在 CentOS虛擬機(jī)添加 EPEL 安裝源來(lái)安裝 cloud-init
包,我發(fā)現(xiàn)其他自帶的yum源就可以安裝了,并不一定要安裝epel源。
# yum install http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm # yum install cloud-init
修改配置,添加root用戶
# vi /etc/cloud/cloud.cfg
users: root
要讓虛擬機(jī)訪問(wèn)元數(shù)據(jù)服務(wù),必須禁用 zeroconf 路由:
# echo "NOZEROCONF=yes" >> /etc/sysconfig/network
要使 nova console-log 命令在 CentOS 6.x
生效 ,你需要添加以下文字到 /boot/grub/menu.lst
文件:
在kernel最后面加上 console=tty0 console=ttyS0,115200n8
# vi /boot/grub/menu.lst
8、清理mac地址信息,最后的網(wǎng)卡配置信息如下
# cat /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE=eth0 TYPE=Ethernet ONBOOT=yes NM_CONTROLLED=yes BOOTPROTO=dhcp
刪除記錄網(wǎng)卡MAC地址的文件
# cd /etc/udev/rules.d/ # rm -f 70-persistent-net.rules
9、關(guān)閉虛擬機(jī)
# shutdown -h now
10、上傳鏡像
# source ~/admin-openrc.sh # openstack image create "Centos-6.6-init-cloud" \ --file /data/Centos-6.6-init-cloud.img \ --disk-format qcow2 --container-format bare \ --public
11、創(chuàng)建云主機(jī),檢查日志
以上是“Centos如何制作Openstack虛擬機(jī)鏡像”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!