Jump to: navigation, search

Difference between revisions of "XenServer/Install/XcpXapiOnPrecise"

(Amended the doc according to Mike's comments.)
Line 24: Line 24:
 
</nowiki></pre>
 
</nowiki></pre>
  
Select your desired network configuration, so that it won't ask for it. At the moment the installer seems to ignore this bit, but it is useful to avoid popping up the ui window.
+
Select your desired network configuration, so that it won't be asked. At the moment the installer seems to ignore this bit, but it is useful to avoid popping up the dialog.
  
 
<pre><nowiki>
 
<pre><nowiki>
Line 30: Line 30:
 
</nowiki></pre>
 
</nowiki></pre>
  
Install XCP-XAPI and its dependencies
+
Setup a redirection, to make sure, xen will be booted first.
  
 
<pre><nowiki>
 
<pre><nowiki>
apt-get install -y ntp ethtool rsync ssmtp strace gdb build-essential xcp-xapi
+
dpkg-divert --add --rename --divert /etc/grub.d/09_linux_xen /etc/grub.d/20_linux_xen
 +
</nowiki></pre>
 +
 
 +
Install XCP-XAPI
 +
 
 +
<pre><nowiki>
 +
apt-get install -y xcp-xapi
 
</nowiki></pre>
 
</nowiki></pre>
  
Line 49: Line 55:
 
</nowiki></pre>
 
</nowiki></pre>
  
Modify your grub configuration, so on next reboot you will be booting up xen
+
Install `qemu-common`, so that the qemu files will end up at `/usr/share/qemu`
 
 
<pre><nowiki>
 
mv /etc/grub.d/20_linux_xen /etc/grub.d/09_linux_xen
 
update-grub2
 
</nowiki></pre>
 
 
 
Keymap location fix
 
  
 
<pre><nowiki>
 
<pre><nowiki>
ln -s qemu-linaro /usr/share/qemu
+
apt-get install -y qemu-common
 
</nowiki></pre>
 
</nowiki></pre>
  
Configure your network
+
Configure your network temporarily, so that you still have access to the server after reboot. After reboot, we'll configure xapi manage the network for us.
  
 
<pre><nowiki>
 
<pre><nowiki>
Line 94: Line 93:
 
<pre><nowiki>
 
<pre><nowiki>
 
reboot
 
reboot
 +
</nowiki></pre>
 +
 +
Re-configure your network interface (eth0, dhcp)
 +
 +
<pre><nowiki>
 +
xe pif-reconfigure-ip uuid=$(xe pif-list device=eth0 --minimal) mode=dhcp
 +
echo 'auto lo' > /etc/network/interfaces
 +
echo 'iface lo inet loopback' >> /etc/network/interfaces
 
</nowiki></pre>
 
</nowiki></pre>
  
Line 119: Line 126:
 
<pre><nowiki>
 
<pre><nowiki>
 
POOL=$(xe pool-list --minimal)
 
POOL=$(xe pool-list --minimal)
sudo xe pool-param-set uuid=$POOL default-SR=$SR
+
xe pool-param-set uuid=$POOL default-SR=$SR
 
</nowiki></pre>
 
</nowiki></pre>

Revision as of 15:37, 22 August 2012

<<TableOfContents()>>

Xen (XCP-XAPI) on Precise (Ubuntu 12.04)

This page should contain a sequence of operations to install an XCP-XAPI hypervisor on top of Precise, to get started with OpenStack.

Setup base system

Install a minimal system (Press F4 during the CD install)

Select only an OpenSSH Server when asked

Other requirements:

  • An empty partition - in my case `/dev/sda7` (should not contain LVM pv s)
  • `eth0` connected to a network with a DHCP server

XCP-XAPI with bridge networking

All the following commands must be executed as root. At the moment you need to perform some post install fixes in case of bridge networking.

Instal Packages

Update your system

apt-get update
apt-get -y dist-upgrade

Select your desired network configuration, so that it won't be asked. At the moment the installer seems to ignore this bit, but it is useful to avoid popping up the dialog.

echo "xcp-networkd    xcp-xapi/networking_type        select  bridge" |  debconf-set-selections

Setup a redirection, to make sure, xen will be booted first.

dpkg-divert --add --rename --divert /etc/grub.d/09_linux_xen /etc/grub.d/20_linux_xen

Install XCP-XAPI

apt-get install -y xcp-xapi

Post Install Fixes

Select xapi as your default toolstack

echo 'TOOLSTACK=xapi' > /etc/default/xen

Change your network configuration to bridge

echo 'bridge' > /etc/xcp/network.conf

Install `qemu-common`, so that the qemu files will end up at `/usr/share/qemu`

apt-get install -y qemu-common

Configure your network temporarily, so that you still have access to the server after reboot. After reboot, we'll configure xapi manage the network for us.

echo 'auto lo' > /etc/network/interfaces
echo 'iface lo inet loopback' >> /etc/network/interfaces
echo 'auto xenbr0' >> /etc/network/interfaces
echo 'iface xenbr0 inet dhcp' >> /etc/network/interfaces
echo '    bridge_ports eth0' >> /etc/network/interfaces

Hack xend init script

sed -i "s/\\\$XEND status && return 1/return 0/" /etc/init.d/xend

Disable services

update-rc.d xendomains disable

Disable openvswitch

update-rc.d openvswitch-switch disable

Reboot your server

reboot

Re-configure your network interface (eth0, dhcp)

xe pif-reconfigure-ip uuid=$(xe pif-list device=eth0 --minimal) mode=dhcp
echo 'auto lo' > /etc/network/interfaces
echo 'iface lo inet loopback' >> /etc/network/interfaces


SR Configuration

Save your desired SR device to a shell variable

SRDEVICE=/dev/sda7

Create an SR from your SRDEVICE

. /etc/xcp/inventory
SR=$(xe sr-create \
host-uuid=$INSTALLATION_UUID \
type=ext \
name-label='Local storage' \
device-config:device=$SRDEVICE)

Set the newly created SR to be the pool default

POOL=$(xe pool-list --minimal)
xe pool-param-set uuid=$POOL default-SR=$SR