** 설치 지침

Ubuntu에 OpenedX 설치 20.04

먼저 다음 명령을 실행하여 Ubuntu 패키지를 업데이트하십시오.

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

OpenedX_Release 변수를 설정하려면 아래 명령을 실행하십시오.

$ export OPENEDX_RELEASE=open-release/lilac.1

config.yml 파일을 작성하고 LMS & Studio의 호스트 이름을 지정합니다.

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

Ansible 설치를 위해 다음 명령을 실행하십시오.

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

무작위 비밀번호를 생성하고 안전한 장소에서 my-passwords.yml 파일을 저장하십시오.

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

OpenedX를 설치하려면 아래 명령을 실행하십시오. 인내심을 유지해야하기 때문에 시간이 걸릴 것입니다.

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