Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

These are installation instructions for the Open edX Full Stack using a Vagrant image and Virtualbox.

  • Install VirtualBox >= 4.3.12
  • Install Vagrant 1.8.1.  Note: newer versions of Vagrant have had difficulty with our boxes.
  • Define which release you want to install: 

    Code Block
    export OPENEDX_RELEASE=the_tag_you_want  #  check https://openedx.atlassian.net/wiki/display/DOC/Open+edX+Releases for release Git Tags to use here
  • Download the install script, and run it. It will get the Vagrantfile and run vagrant for you: 

    Code Block
    curl -OL https://raw.github.com/edx/configuration/$OPENEDX_RELEASE/util/install/install_stack.sh
    bash install_stack.sh devstack $OPENEDX_RELEASE
  • If you need more control over the installation, instead of using install_stack.sh, download the Vagrantfile and create the Vagrant instance yourself:

    Code Block
    curl -OL https://raw.githubusercontent.com/edx/configuration/$OPENEDX_RELEASE/vagrant/release/fullstack/Vagrantfile
    vagrant plugin install vagrant-hostsupdater
    vagrant up

...

Pre-Requisites and Installation

Follow the instructions at http://edx.readthedocs.io/projects/edx-installing-configuring-and-running/en/latest/installation/fullstack/index.html

Once Fullstack is Running

Default username/password: vagrant/vagrant

...