Server part of Xen Orchestra. Fork for MySQL support
Go to file
Julien Fontanet a6f391dd68 Merge branch 'nodejs'.
This new version of XO-Server is now based on node.js instead of PHP.
2013-08-13 16:47:09 +02:00
config XCP name is now deprecated. 2013-05-23 10:30:08 +02:00
lib The “STREAM_CLIENT_ASYNC_CONNECT” seems to cause problems (see #7). 2013-07-08 14:29:01 +02:00
public/http Various updates. 2013-07-24 10:48:34 +02:00
src Minor updates. 2013-08-13 16:40:11 +02:00
tests Add new functions test 2013-07-24 11:19:07 +02:00
.gitignore Various updates. 2013-06-25 19:02:54 +02:00
.jshintrc Various updates. 2013-07-30 17:21:27 +02:00
README.md Merge branch 'nodejs'. 2013-08-13 16:47:09 +02:00
composer.json Repository reorganization. 2013-03-02 17:40:01 +01:00
composer.lock Update dependencies. 2013-04-12 15:02:27 +02:00
package.json Various updates. 2013-07-24 10:48:34 +02:00
xo-server Merge branch 'nodejs'. 2013-08-13 16:47:09 +02:00

README.md

Xen Orchestra Server

XO-Server is part of Xen Orchestra, a web interface for XenServer or XAPI enabled hosts.

It contains all the logic of XO and handles:

  • connections to all XAPI servers/pools;
  • a cache system to provide the best response time possible;
  • users authentication and authorizations;
  • a JSON-RPC based interface for XO clients (i.e. XO-Web).

XO is currently under development and may be subject to important bugs.

Installation

There is currently no package available for XO-Server, you must therefore use the following procedure.

  1. Download the code, you may either use git git clone git://github.com/vatesfr/xo-server or download a Zip archive.
  2. You need node.js running. Go in the xo-server folder and do a npm update && npm install.
  3. Go into public/http folder and symlink to xo-web by doing this: for f in ../../../xo-web/public/*; do ln -s "$f" .;done
  4. Finally, run ./xo-server, your XO install is available on http://IPADDRESS:8080

How to report a bug?

If you are certain the bug is exclusively related to XO-Server, you may use the bugtracker of this repository.

Otherwise, please consider using the bugtracker of the general repository.