NIH | National Cancer Institute | NCI Wiki  

Error rendering macro 'rw-search'

null

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 16 Next »

This document explains how to install CodaLab and is an alternative to the more detailed user manual on the CodaLab Wiki. CodaLab is under active development, so the procedures here are subject to change.

Your first step is to decide which virtual machine or computer you want to install MedICI.

Microsoft Azure\Ubuntu Server 18.04 LTS:

This tutorial focuses on Ubuntu-based installations on Azure, although instructions on how to do this on Microsoft and Apple operating systems and in AWS are also included.

Create a Virtual Machine

Create a VM in Azure or use a computer with Ubuntu Server 18.04 installed. Once you have an Azure account, go to the Azure home page. A sidebar with many options or categories appears. You can create either a resource or a resource group and then add resources into it. This tutorial uses the resource group method to demonstrate good organizational practices.

  1. Select Resource groups > add.
    Microsoft Azure, Resource groups screen, highlighting the Add button
  2. Name the resource group and then decide how you will pay for this service. 
  3. Click Review + create. 
  4. Go to the resource group and add a VM:
    Microsoft Azure, Tutorials screen
  5. Choose Ubuntu Server 18.04 LTS.
    The VM creation page appears. 

  6. Choose the following settings.

    Microsoft Azure, Create a virtual machine screen

  7. Now click Review + create. Review the options and then click create. Azure starts creating the VM and then finishes, as shown in the following two images.
    Microsoft Azure, Your deployment is underway screen

    Microsoft Azure, Your deployment is complete page

IP Address Config

  1. Navigate to the VM by clicking Go to resource. Go to the resources home page to get the public IP address so that you can access the machine.

    MedICI-CodaLab-Master page
  2. Set the IP address setting to Static. Make a note of the IP address. Click Configure to edit the DNS settings. Click Save.
    MedICI-CodaLab-Master-ip Configuration page

SSH Port

We need to configure the machine to be ssh accessible (port 22) and open http (port 80) (https://medium.com/techinpieces/practical-azure-how-to-enable-ssh-on-azure-vm-84d8fba8103e). Go to the VM and click Networking. On the right find the button Add inbound port rule. Change Destination port ranges to 22, Protocol to TCP, Priority to 330, and Name to anything you’d like:

Enable_22 screen for MedICI-CodaLab-Master nsg

Once you have that let’s open a terminal and get inside the machine by typing $ ssh <user>@<public IP address>.

If you get a message regarding encryption keys, enter y\yes as this is the first time signing into this machine.

HTTP Port

On the right find the button Add inbound port rule. Change the Destination port ranges to 80, Protocol to TCP, Priority to 300, and Name to anything you like.

Enable HTTP screen

This step is necessary to access the site once you deploy it.

Installing CodaLab

CodaLab has documentation regarding their preferred installation configuration. The two best sources are the following:

The base code for CodaLab can be set up on different cloud providers (Google Cloud, AWS, Azure). The CodaLab team has made Docker images for AWS and Google cloud that in theory should just run once some settings are established, but require a good working knowledge of Docker. For the purposes of MedICI, it is recommended to follow the “Configure CodaLab from scratch (harder documentation)” procedure found in the first link above.

Step 1 - Install Docker and Docker-Compose

Before we do any github cloning we need to install docker and docker-compose. First docker:

This link details installing docker for Ubuntu: https://docs.docker.com/install/linux/docker-ce/ubuntu/. For someone not familiar with linux there is a lot going on on that page.

Docker

So for a basic installation this is what I ran in order:

$ sudo apt-get remove docker docker-engine docker.io containerd runc
$ sudo apt-get update
$ sudo apt-get install \

    apt-transport-https \
    ca-certificates \
    curl \
    gnupg-agent \
    software-properties-common
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
$ sudo apt-key fingerprint 0EBFCD88

$ sudo add-apt-repository \
   "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
   $(lsb_release -cs) \
   stable"
$ sudo apt-get update
$ sudo apt-get install docker-ce docker-ce-cli containerd.io
$ sudo docker run hello-world

The result shows on the following screen.

Now if we run ‘docker’, we should get the options list telling us how to use this command verifying it is installed and we can use it.

Docker-Compose

Next docker-compose. In the terminal on your new VM check to see if docker-compose is installed. If not which it is not for me then we need to install it. While it seems a ‘sudo apt install docker-compose’ should work, the CodaLab documentation from link “Configure CodaLab from scratch (harder documentation)” says to go here and install from dockers website. The command I’m actually running is this:

sudo curl -L "https://github.com/docker/compose/releases/download/1.24.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose


Now we have to change the permissions in /usr/local/bin/docker-compose to use it:

sudo chmod +x /usr/local/bin/docker-compose


Now if we run ‘docker-compose’, we should get the options list telling us how to use this command verifying it is installed and we can use it.

Step 2 - Get the Source Code

The latest and greatest code is located here: https://github.com/codalab/codalab-competitions. Both sets of instructions want you to clone this repo locally to the VM. Before we get started I want to say since we will be making our own customizations down the road we will fork the repo CodaLab has so generously provided and do two things:

  1. Pull the latest changes from the master repo https://github.com/codalab/codalab-competitions into our own repo periodically to make sure we have the latest base code. (repo: https://github.com/QTIM-Lab/MedICI/)...If you need help doing this on your own see forking a repo. Since I’ve already done it, just follow along and clone from the QTIM-Lab/MedICI repo.
  2. Store our customizations on github so we can clone from this repo for future projects.

Clone the MedICI project. This follows CodaLabs instructions but with our github repo instead. Below is a picture of the commands I’ve executed from “Configure CodaLab from scratch (harder documentation)”. The green circles represent once inside the “src” folder, the changes that are not in the raw CodaLab github repo. This is the start of our customizations.

We can now push these changes into our branch.

At this point the app should be ready to deploy so we run ‘$ docker compose up -d’. However I have an error:

Turns out I needed to run with sudo or add myself to the docker group:

  • $ sudo docker-compose up -d

Or


The flag ‘-d’ means to run in detached mode. If you don’t use it you will notice your command prompt is in a live feed mode telling you everything that is going on with this docker.

Step 3 - Tweak The .env file and Azure Storage

Using this documentation( [2] from earlier): https://codalab-competitions.readthedocs.io/en/latest/

Create a Storage Account

Below is the blob storage section for Azure:

You may sign up for an Azure account here, then follow the directions below.

  1. You do not have to do this if you've already setup S3!
  2. Log on to the Azure Portal.
  3. From the Dashboard, click Storage accounts on the left.
  4. Click Add at the top of the page to create a new storage account.
  5. If you don't already have a subscription, create one now. The free trial requires a credit card, and deletes all your storage containers after 90 days, unless you upgrade to a different plan i.e. 'Pay as You Go'.
  6. Select the Classic storage account. Refer to the image below for settings.
  7. In the dashboard, click All Resources/All Subscriptions and then click on your username. Click Access Keys and Copy your account name and access key to .env under AZURE_ACCOUNT_NAME and AZURE_ACCOUNT_KEY.
  8. Within that same user account, click on Containers and Add a new container.
  9. Create a new container named "bundles". Set the Access to "Private".
  10. Add another container named "public". Set the Access to "Public Blob".
  11. Make sure the DEFAULT_FILE_STORAGE .env option is set to codalab.azure_storage.AzureStorage

This is the BLOB settings:

medici - Blobs settings page

The CodaLab documentation leaves one final step out. We NEED to enable CORS. Click CORS in the above image and add these settings (https://stackoverflow.com/questions/50785255/azure-storage-got-403-url-cors-not-enabled-or-no-matching-rule-found-for-thi):

If you don’t, uploading a competition will give you CORS errors in the browser:

Once applied uploading works:

Customizations

Follow the Codalab instructions for creating a custom logo but note that you must be the super user to log in to the customizer. You must log in to the database as the super user. Django doesn’t have a super user by default, so you must create it. To do so, create a secure connection to your VM that hosts the site and run this command:

$ docker exec -it django python manage.py createsuperuser


Now use CodaLabs instructions and navigate to http://your-instance.com/customizer.

Log in with the newly made credentials. Choose a new file to be your logo.

  • No labels