Howto Xen XCP-NG: Difference between revisions

From Vidalinux Wiki
Jump to navigation Jump to search
No edit summary
Line 2: Line 2:
download iso:
download iso:
  wget https://mirrors.xcp-ng.org/isos/8.2/xcp-ng-8.2.1-20231130.iso?https=1 -O xcp-ng-8.2.1-20231130.iso
  wget https://mirrors.xcp-ng.org/isos/8.2/xcp-ng-8.2.1-20231130.iso?https=1 -O xcp-ng-8.2.1-20231130.iso
= install xen-orchestra =
clone repo using git:
git clone https://github.com/ronivay/xen-orchestra-docker
enable ssl in docker-compose:
- "443:443"
- REDIRECT_TO_HTTPS=true
- CERT_PATH='./certs/cert.pem'
- KEY_PATH='./certs/cert.key'
mount certificate files to container if HTTPS is set with cert/key paths
- ./certs/cert.pem:/cert.pem
- ./certs/cert.key:/cert.key
- ./certs/ca.pem:/host-ca.pem
start docker container using docker-compose:
docker-compose up -d
= references =
= references =
* https://github.com/ronivay/XenOrchestraInstallerUpdater
* https://github.com/ronivay/XenOrchestraInstallerUpdater
* https://docs.xcp-ng.org
* https://docs.xcp-ng.org

Revision as of 14:56, 15 May 2024

installation

download iso:

wget https://mirrors.xcp-ng.org/isos/8.2/xcp-ng-8.2.1-20231130.iso?https=1 -O xcp-ng-8.2.1-20231130.iso

install xen-orchestra

clone repo using git:

git clone https://github.com/ronivay/xen-orchestra-docker

enable ssl in docker-compose:

- "443:443"
- REDIRECT_TO_HTTPS=true
- CERT_PATH='./certs/cert.pem'
- KEY_PATH='./certs/cert.key'
mount certificate files to container if HTTPS is set with cert/key paths
- ./certs/cert.pem:/cert.pem
- ./certs/cert.key:/cert.key
- ./certs/ca.pem:/host-ca.pem

start docker container using docker-compose:

docker-compose up -d

references