**Hướng dẫn cài đặt

Cài đặt OpenedX trên Ubuntu 20.04

Đầu tiên, cập nhật các gói Ubuntu bằng cách chạy các lệnh sau.

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

Chạy lệnh bên dưới để đặt biến OpenedX_Release.

$ export OPENEDX_RELEASE=open-release/lilac.1

Tạo tệp config.yml và chỉ định tên máy chủ của LMS & Studio.

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

Chạy lệnh sau để cài đặt ansible.

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

Tạo mật khẩu ngẫu nhiên và lưu tệp my-passwords.yml ở nơi an toàn

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

Chạy lệnh bên dưới để cài đặt OpenedX. Sẽ mất thời gian để bạn cần giữ kiên nhẫn.

$ wget https://raw.githubusercontent.com/edx/configuration/$OPENEDX_RELEASE/util/install/native.sh -O - | bash
 Tiếng Việt