**インストール手順
** ubuntu 20.04にopenedxをインストールします**
まず、次のコマンドを実行して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