Ubuntu 10.04で Eucalyptus を使用してプライベートクラウドをセットアップしています。 VMインスタンスにSSHで接続できない場合があり、VMインスタンスのコンソールに直接接続できるようにしたい。ただし、デフォルトでは、これはvirshでは機能しないようです。
$ Sudo virsh -c qemu:///system console i-486B085E
No console available for domain
たとえば、Eucalyptusがlibvirtに渡されるXMLファイルを生成する方法を変更することによって、これを有効にする方法はありますか?
Eucalyptusが生成するlibvirt.xmlファイルは次のとおりです。
$ cat /var/lib/eucalyptus/instances/admin/i-486B085E/libvirt.xml
<domain type='kvm'>
<name>i-486B085E</name>
<os>
<type>hvm</type>
<kernel>/var/lib/eucalyptus/instances//admin/i-486B085E/kernel</kernel>
<initrd>/var/lib/eucalyptus/instances//admin/i-486B085E/ramdisk</initrd>
<cmdline>root=/dev/sda1 console=ttyS0</cmdline>
</os>
<features>
<acpi/>
</features>
<memory>262144</memory>
<vcpu>1</vcpu>
<devices>
<disk type='file'>
<source file='/var/lib/eucalyptus/instances//admin/i-486B085E/disk'/>
<target dev='sda'/>
</disk>
<interface type='bridge'>
<source bridge='eucabr10'/>
<mac address='d0:0d:48:6B:08:5E'/>
<model type='e1000'/>
</interface>
<serial type="file">
<source path='/var/lib/eucalyptus/instances//admin/i-486B085E/console.log'/>
<target port='1'/>
</serial>
</devices>
</domain>
Virshdumpxmlの出力は次のとおりです。
$ Sudo virsh dumpxml i-486B085E
<domain type='kvm' id='3'>
<name>i-486B085E</name>
<uuid>3b762376-4de1-f6ac-7327-9df520fa4862</uuid>
<memory>262144</memory>
<currentMemory>262144</currentMemory>
<vcpu>1</vcpu>
<os>
<type Arch='x86_64' machine='pc-0.12'>hvm</type>
<kernel>/var/lib/eucalyptus/instances//admin/i-486B085E/kernel</kernel>
<initrd>/var/lib/eucalyptus/instances//admin/i-486B085E/ramdisk</initrd>
<cmdline>root=/dev/sda1 console=ttyS0</cmdline>
<boot dev='hd'/>
</os>
<features>
<acpi/>
</features>
<clock offset='utc'/>
<on_poweroff>destroy</on_poweroff>
<on_reboot>restart</on_reboot>
<on_crash>destroy</on_crash>
<devices>
<emulator>/usr/bin/kvm</emulator>
<disk type='file' device='disk'>
<source file='/var/lib/eucalyptus/instances//admin/i-486B085E/disk'/>
<target dev='sda' bus='scsi'/>
</disk>
<interface type='bridge'>
<mac address='d0:0d:48:6b:08:5e'/>
<source bridge='eucabr10'/>
<target dev='vnet0'/>
<model type='e1000'/>
</interface>
<serial type='file'>
<source path='/var/lib/eucalyptus/instances//admin/i-486B085E/console.log'/>
<target port='0'/>
</serial>
<console type='file'>
<source path='/var/lib/eucalyptus/instances//admin/i-486B085E/console.log'/>
<target port='0'/>
</console>
</devices>
<seclabel type='dynamic' model='apparmor'>
<label>libvirt-3b762376-4de1-f6ac-7327-9df520fa4862</label>
<imagelabel>libvirt-3b762376-4de1-f6ac-7327-9df520fa4862</imagelabel>
</seclabel>
</domain>
呼び出されることになった完全なKVMコマンドラインは次のとおりです。
/usr/bin/kvm -S -M pc-0.12 -enable-kvm -m 256 -smp 1 -name i-486B085E -uuid 3b762376-4de1-f6ac-7327-9df520fa4862 -nographic -chardev socket,id=monitor,path=/var/lib/libvirt/qemu/i-486B085E.monitor,server,nowait -monitor chardev:monitor -boot c -kernel /var/lib/eucalyptus/instances//admin/i-486B085E/kernel -initrd /var/lib/eucalyptus/instances//admin/i-486B085E/ramdisk -append root=/dev/sda1 console=ttyS0 -drive file=/var/lib/eucalyptus/instances//admin/i-486B085E/disk,if=scsi,index=0,boot=on -net nic,macaddr=d0:0d:48:6b:08:5e,vlan=0,model=e1000,name=e1000.0 -net tap,fd=55,vlan=0,name=tap.0 -chardev file,id=serial0,path=/var/lib/eucalyptus/instances//admin/i-486B085E/console.log -serial chardev:serial0 -parallel none -usb
これはEucalyptus3以降の登場で変わったようです。これは、今朝私が経験した悪化を誰もが救うための更新されたソリューションです。
次の2つのリンクにある情報の組み合わせを使用します。 http://gobertelli.blogspot.co.uk/2012/08/customize-instance-libvirt-environment.htmlhttps:/ /www.redhat.com/archives/libvirt-users/2012-May/msg00048.html
ノードコントローラーで、/ etc/eucalyptus /libvirt.xslを次のように編集します。
<xsl:choose>
<xsl:when test="(/instance/hypervisor/@type = 'kvm' or /instance/hypervisor/@type = 'qemu')">
<serial type="pty">
<target port="0"/>
</serial>
</xsl:when>
<xsl:when test="/instance/hypervisor/@type = 'xen' and /instance/os/@platform = 'windows'">
<serial type="pty">
<source path="/dev/pts/3"/>
<target port="0"/>
</serial>
<input type="tablet" bus="usb"/>
<input type="mouse" bus="ps2"/>
</xsl:when>
<xsl:when test="/instance/hypervisor/@type = 'xen' and /instance/backing/root/@type = 'ebs'">
<console type="pty"/>
<target port="0"/>
</xsl:when>
</xsl:choose>
<!-- <graphics type='vnc' port='-1' autoport='yes' keymap='en-us' -->
</devices>
</domain>
</xsl:template>
シリアル定義とコンソール定義の両方を「pty」タイプとターゲット「0」に変更します。
実行中の仮想マシンを停止して起動すると、通常どおり「virshconsole」を実行できるようになります。
私はそれを理解しました.../usr/share/eucalyptus/gen_kvm_libvirt_xmlファイルを編集する必要があります。差分は次のとおりです。
--- /usr/share/eucalyptus/gen_kvm_libvirt_xml.bak 2010-09-28 14:54:20.259266161 -0400
+++ /usr/share/eucalyptus/gen_kvm_libvirt_xml 2010-09-28 15:01:25.269265897 -0400
@@ -109,9 +109,9 @@
<mac address='PRIVMACADDR'/>
<model type='e1000'/>
</interface>
- <serial type="file">
- <source path='BASEPATH/console.log'/>
- <target port='1'/>
+ <serial type='pty'>
+ <source path='/dev/pts/2'/>
+ <target port='0'/>
</serial>
</devices>
</domain>