xo-server/README.md

28 lines
1.4 KiB
Markdown
Raw Normal View History

2013-02-08 09:42:49 +01:00
# Xen Orchestra Server
2013-02-07 19:42:29 +01:00
2013-08-04 20:21:11 +02:00
XO-Server is part of [Xen Orchestra](https://github.com/vatesfr/xo), a web interface for XenServer or XAPI enabled hosts.
2013-02-07 19:42:29 +01:00
2013-02-08 09:42:49 +01:00
It contains all the logic of XO and handles:
2013-02-07 19:42:29 +01:00
2013-08-04 20:21:11 +02:00
- connections to all XAPI servers/pools;
2013-02-08 09:42:49 +01:00
- 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](https://github.com/vatesfr/xo-web)).
2013-02-07 19:42:29 +01:00
2013-02-08 09:42:49 +01:00
__XO is currently under development and may be subject to important bugs.__
2013-02-07 19:42:29 +01:00
2013-02-08 09:42:49 +01:00
## Installation
_There is currently no package available for XO-Server, you must therefore use the following procedure._
2013-02-08 15:33:12 +01:00
1. Download the code, you may either use git `git clone git://github.com/vatesfr/xo-server` or download a [Zip archive](https://github.com/vatesfr/xo-server/archive/master.zip).
2013-08-04 20:21:11 +02:00
2. You need [node.js](http://nodejs.org/) 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`
2013-02-08 09:42:49 +01:00
## 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](https://github.com/vatesfr/xo-server/issues).
Otherwise, please consider using the [bugtracker of the general repository](https://github.com/vatesfr/xo/issues).