X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=INSTALL.XenServer;h=48f81785ff14a220c034973a563077b8d2bb78aa;hb=101c55a1af7998a009a5c88c20e30837bc1a9765;hp=bdfc26a999454514a5f1c946bfa3eb5597f6b08a;hpb=4b11d5e8d34655977d716cbdba504528aa866997;p=sliver-openvswitch.git diff --git a/INSTALL.XenServer b/INSTALL.XenServer index bdfc26a99..48f81785f 100644 --- a/INSTALL.XenServer +++ b/INSTALL.XenServer @@ -2,9 +2,11 @@ =============================================== This document describes how to build and install Open vSwitch on a -Citrix XenServer 5.5.0 host. If you want to install Open vSwitch on a +Citrix XenServer host. If you want to install Open vSwitch on a generic Linux host, see INSTALL.Linux instead. +These instructions have been tested with XenServer 5.6 FP1. + Building Open vSwitch for XenServer ----------------------------------- @@ -25,9 +27,9 @@ Once you have a distribution tarball, copy it into cd /tmp tar xfz /usr/src/redhat/SOURCES/openvswitch-$VERSION.tar.gz rpmbuild \ - -D "vswitch_version $VERSION" \ + -D "openvswitch_version $VERSION" \ -D "xen_version $XENKERNEL" \ - -bb openvswitch-$VERSION/xenserver/vswitch-xen.spec + -bb openvswitch-$VERSION/xenserver/openvswitch-xen.spec where: @@ -35,31 +37,34 @@ where: name of the Open vSwitch tarball, e.g. 0.90.0. is the version number of the Xen kernel, - e.g. 2.6.18-128.1.1.el5.xs5.5.0.487.1006xen. This version number + e.g. 2.6.32.12-0.7.1.xs5.6.100.307.170586xen. This version number appears as the name of a directory in /lib/modules inside the VM. It always ends in "xen". -Two RPMs will be output into /usr/src/redhat/RPMS, whose names begin -with "vswitch" and "vswitch-debuginfo". +Three RPMs will be output into /usr/src/redhat/RPMS/i386, whose names begin +with "openvswitch", "openvswitch-modules-xen", and "openvswitch-debuginfo". Installing Open vSwitch for XenServer ------------------------------------- -To install Open vSwitch on a XenServer host, or to upgrade to a newer -version, copy the "vswitch" RPM to that host with "scp", then install -it with "rpm -U", e.g.: +To install Open vSwitch on a XenServer host, or to upgrade to a newer version, +copy the "openvswitch" and "openvswitch-modules-xen" RPMs to that host with +"scp", then install them with "rpm -U", e.g.: - scp vswitch-$VERSION-1.i386.rpm root@: -(At this point you will have to enter 's root password.) + scp openvswitch-$VERSION-1.i386.rpm \ + openvswitch-modules-xen-$XEN_KERNEL_VERSION-$VERSION-1.i386.rpm \ + root@: +(At this point you will have to enter 's root password.) ssh root@ -(At this point you will have to enter 's root password again.) - rpm -U vswitch-$VERSION-1.i386.rpm +(At this point you will have to enter 's root password again.) + rpm -U openvswitch-$VERSION-1.i386.rpm \ + openvswitch-modules-xen-$XEN_KERNEL_VERSION-$VERSION-1.i386.rpm -To uninstall Open vSwitch from a XenServer host, remove the package: +To uninstall Open vSwitch from a XenServer host, remove the packages: ssh root@ -(At this point you will have to enter 's root password again.) - rpm -e vswitch +(At this point you will have to enter 's root password again.) + rpm -e openvswitch openvswitch-modules-xen-$XEN_KERNEL_VERSION After installing or uninstalling Open vSwitch, the XenServer should be rebooted as soon as possible. @@ -67,4 +72,4 @@ rebooted as soon as possible. Reporting Bugs -------------- -Please report problems to ovs-bugs@openvswitch.org. +Please report problems to bugs@openvswitch.org.