Managing XenServer with a XenCenter and Xen Orchestra Web Interfaces - Part - 7 - Part 2

Channel: XenServer Virtualization Linux
Abstract: navigate toward the bottom of the file and locate the line ‘# List of files/directories which will be served.’. Below this line there is a line that w
Installation of Xen Orchestra

Xen Orchestra, as mentioned earlier, is a web based method for managing XenServer infrastructures. The officially supported and suggested product to use in a production environment is the Xen Orchestra Appliance, or often called XOA.

This appliance is a pre-built and highly stable Debian virtual guest that can be installed to a XenServer host or run through VirtualBox.

Once XOA is up and running, the Xen Orchestra web interface is available and can be used to manage XenServers.

There are many benefits to using the official XO appliance but there is also the ability to install Xen Orchestra from sources as well. Installing from sources provides all of the latest and greatest bug fixes and feature enhancements directly from the Xen Orchestra development team.

The next few paragraphs will walk through the process of manually installing Xen Orchestra on a Debian 8 Jessie install. It is assumed that a Debian 8 system is already running and fully updated from the official Debian repositories.

To see how to install Debian 8 please see the walk through found here Installation of Debian 8 Jessie.

The official guide to building XO from source can be found here. The following are modified steps to accomplish the same task on a host running Debian 8 Jessie.

The first step to building Xen Orchestra (XO) from sources is to install the necessary dependencies. According to the XO documentation the dependencies can be installed with the following command.

# apt-get install wget build-essential redis-server libpng-dev git python-minimal

Next node.js needs to be installed as it is required by XO. The installation of node.js can be accomplish by following the next few steps.

# wget -c https://raw.githubusercontent.com/visionmedia/n/master/bin/n
# chmod u+x n
# ./n lts
# npm i -g npm

Be sure to check that the proper versions of both 'node' and 'npm' are installed with the following commands.

# node -v
# npm -v
Check Nodejs and NPM Version

After the successful completion of these commands, all the necessary dependencies are installed and the system is ready to begin the installation of the XO server and XO web components.

# git clone -b stable http://github.com/vatesfr/xo-server 
# git clone -b stable http://github.com/vatesfr/xo-web
# ls -l
Installation of Xen Orchestra

The first step is to prepare the XO-Server. All of the commands to prepare the XO server must be issued from within the 'xo-server' directory.

# cd xo-server
# npm install && npm run build

This process will take some time (circa 5 minutes) and does require an active Internet connection. Once complete the server configuration file needs to be created and modified to point to the web information that will be built in the next paragraphs.

The 'xo-server' and 'xo-web' folders are assumed to be in the same parent directory according to the installation instructions; modify to fit the environment as needed.

To accomplish the server’s configuration issue the following commands.

# cp sample.config.yaml .xo-server.yaml
# nano .xo-server.yaml

Once the '.xo-server.yaml' file is opened, navigate toward the bottom of the file and locate the line ‘# List of files/directories which will be served.’. Below this line there is a line that will be commented out with a ‘#’ and the comment needs to be removed.

If xo-server and xo-web directories are in the same parent folder, change the line to: '/': '../xo-web/dist' (single quotes are needed in the preceding code).

Otherwise, make the appropriate changes to the path for the 'xo-web/dist/' folder. (NOTE: A privileged user is required to bind to port 80).

If a non-privileged user is to be used, locate the line 'port: 80' in the '.xo-server.yaml' file and change the port value to a port number above 1024. This guide will use port 8080 by setting the port directive as such 'port: 8080'.

Configure Xen Orchestra

Save the changes to this file and exit the text editor. At this point the server should be able to be started successfully. Test this before continuing by issuing the following command (To stop the server, hit 'ctrl' + 'c' keys).

$ su -c 'npm start'
Start NPM Service

Now the web files for the XO server need to be prepared. This is a simple process that must be done from within the 'xo-web' directory.

$ cd ../xo-web
$ npm install
$ npm run build

The build process for the web files will take time and requires an active Internet connection as well. Once the process is complete, the server can be started again and will deliver the newly created web files.

$ cd ../xo-server
$ su -c 'npm start'

At this point open a web browser and navigate to the XO-Server's IP address and port number. In the configuration above, the server was opened on port 8080 so to connect to Xen Orchestra, the following url will be needed:

http://:8080

Once successfully connected, the default user-name and password are as follows:

User-name: [email protected]
Password: admin

A successful login should result in the following web page loading.

Xen Orchestra Web Interface

At this point Xen Orchestra is working and ready to be used to manage XenServer hosts.

NOTE: As mentioned earlier, it is strongly recommended that the official Xen Orchestra appliance be used to manage production XenServer hosts! These instructions walked the reader through installing the absolute newest feature set of Xen Orchestra from sources.

Pages: 1 2 3 4

Ref From: tecmint
Channels: xenservercitrix

Related articles