您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“UBuntu系統(tǒng)安裝KVM創(chuàng)建虛擬機(jī)遭遇故障如何解決”,感興趣的朋友不妨來看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“UBuntu系統(tǒng)安裝KVM創(chuàng)建虛擬機(jī)遭遇故障如何解決”吧!
本次在UBuntu12.04.2系統(tǒng)安裝KVM,隨后創(chuàng)建虛擬機(jī),又出現(xiàn)了新的問題。
現(xiàn)象:
ping不通虛擬機(jī),ssh登錄不上,console方式登錄不上, 虛擬機(jī)無法shutdown,貌似電源管理也沒有安裝成功。
先來解決網(wǎng)絡(luò)問題:
還好可以通過virt-cat來檢查虛擬機(jī)內(nèi)部的文件。
先關(guān)閉虛擬機(jī)
virsh destroy vm1然后檢查網(wǎng)卡設(shè)置文件:
代碼如下:
root@dbkvm:~# virt-cat -d vm1 /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.1.51
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 8.8.8.8
dns-search localdomain
這個(gè)dns-search localdomain看上去很奇怪。一般是defaultdomain。
localdomain是因?yàn)閔ost機(jī)器的/etc/hosts中配置成了:
代碼如下:
127.0.0.1 localhost.localdomain dbkvm
將其換成這種配置:
代碼如下:
127.0.0.1 localhost
127.0.1.1 dbkvm
再創(chuàng)建虛擬機(jī),網(wǎng)絡(luò)正常了??梢詐ing通,可以ssh登錄。 console問題還有。
虛擬機(jī)里面的網(wǎng)絡(luò)設(shè)置dns-search 被設(shè)置成了defaultdomain。
因此推測(cè)是hosts文件的配置錯(cuò)誤,導(dǎo)致虛擬機(jī)中網(wǎng)卡設(shè)置的dns-search錯(cuò)誤,導(dǎo)致無法連接網(wǎng)絡(luò),因此不能在創(chuàng)建過程中從網(wǎng)絡(luò)下載安裝openssh-server.
來看一下電源管理
如果不安裝電源管理,就不能在host主機(jī)通過shutdown關(guān)閉虛擬機(jī)。
在創(chuàng)建vm的選項(xiàng)中需要補(bǔ)上:
代碼如下:
--addpkg=acpid
事后彌補(bǔ)就要登錄到虛擬機(jī)中,然后運(yùn)行命令:
代碼如下:
apt-get install acpid
再來處理console不能登錄的問題。
先停止虛擬機(jī)。
代碼如下:
virsh stop vm1
準(zhǔn)備一個(gè)文件ttyS0.conf, 內(nèi)容如下:
代碼如下:
# ttyS0.conf - getty
# This service maintains a getty on ttyS0 from the point the system is
# started until it is shut down again.
start on stopped rc RUNLEVEL=[2345]
stop on runlevel [!2345]
respawn
安裝guestfish程序:
代碼如下:
apt-get install guestfish
現(xiàn)在用virt-copy-in將文件復(fù)制到vm的/etc/init目錄中:
代碼如下:
virt-copy-in -d vm1 ttyS0.conf /etc/init
然后調(diào)用virsh edit vm1 來編輯vm1的配置文件,添加下面的內(nèi)容:
代碼如下:
<devices>
...
<serial type='pty'>
<source path='/dev/pts/2'/>
<target port='0'/>
</serial>
<console type='pty' tty='/dev/pts/2'>
<source path='/dev/pts/2'/>
<target port='0'/>
</console>
</devices>
最后試用一下:
代碼如下:
virsh start vm1
Domain vm1 started
root@dbkvm:~/kvm_scripts# virsh console vm1
Connected to domain vm1
Escape character is ^]
Ubuntu 12.04.2 LTS vm1 ttyS0
vm1 login: root
Password:
Last login: Thu May 2 09:21:03 UTC 2013 from 192.168.1.4 on pts/1
Welcome to Ubuntu 12.04.2 LTS (GNU/Linux 3.2.0-41-virtual x86_64)
可以了。所有問題的根源都出在那個(gè)不正確的host機(jī)器上的/etc/hosts配置。
到此,相信大家對(duì)“UBuntu系統(tǒng)安裝KVM創(chuàng)建虛擬機(jī)遭遇故障如何解決”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。