**Istruzioni per l’installazione

Installa aperto su Ubuntu 20.04

Innanzitutto, aggiorna i pacchetti Ubuntu eseguendo i seguenti comandi.

$ sudo apt-get update -y
$ sudo apt-get upgrade -y
$ sudo reboot

Esegui il comando di seguito per impostare la variabile aperta OpenEDX_RELEASE.

$ export OPENEDX_RELEASE=open-release/lilac.1

Crea un file config.yml e specifica il nome host di LMS & Studio.

EDXAPP_LMS_BASE: "online.myeducation.org"
EDXAPP_CMS_BASE: "studio.online.myeducation.org"

Esegui il comando seguente per l’installazione di Ansible.

$ wget https://raw.githubusercontent.com/edx/configuration/$OPENEDX_RELEASE/util/install/ansible-bootstrap.sh -O - | sudo -E bash 

Genera le password randomizzate e salva il file my-passwords.yml in un luogo sicuro

$ wget https://raw.githubusercontent.com/edx/configuration/$OPENEDX_RELEASE/util/install/generate-passwords.sh -O - | bash

Esegui il comando in basso per installare OpenEDX. Ci vorrebbe tempo, quindi devi mantenere la pazienza.

$ wget https://raw.githubusercontent.com/edx/configuration/$OPENEDX_RELEASE/util/install/native.sh -O - | bash
 Italiano