×
Community Blog How to Install NVIDIA GPU Cloud Virtual Machine Image on Alibaba Cloud

How to Install NVIDIA GPU Cloud Virtual Machine Image on Alibaba Cloud

This tutorial shows you how to install and launch an NVIDIA GPU Cloud Machine Image on Alibaba Cloud through the Alibaba Cloud console and CLI.

By NVIDIA

NVIDIA makes available on the Alibaba Cloud platform a customized image optimized for the NVIDIA Pascal? and Volta? -based Tesla GPUs. Running NGC containers on this virtual machine (VM) instance provides optimum performance for deep learning jobs.

For those familiar with the Alibaba platform, the process of launching the instance is as simple as logging into Alibaba, selecting the "NVIDIA GPU Cloud Machine Image" and one of the supported NVIDIA GPU instance types, configuring settings as needed, then launching the VM. After launching the VM, you can SSH into it and start running deep learning jobs using framework containers from the NGC container registry.

This article provides step-by-step instructions for accomplishing this.

Prerequisites

These instructions assume the following:

  1. You have an Alibaba account - https://home-intl.console.aliyun.com/ with permissions to create resources.
  2. You have performed the following steps from the NGC website (see NGC Getting Started Guide)
    1. Signed up for an NGC account at https://ngc.nvidia.com/signup.
    2. Created an NGC API key for access to the NGC container registry.
    3. Browsed the NGC website and identified an available NGC container and tag to run on the VMI.
  3. If you plan to use the CLI or Terraform, then the Alibaba CLI must be installed, with at least the ECS SDK, and you must create SSH keys to use with Alibaba; see setup instructions below.
  4. Windows Users: The CLI code snippets are for bash on Linux or Mac OS X. If you are using Windows and want to use the snippets as-is, you can use the Windows Subsystem for Linux and use the bash shell (you will be in Ubuntu Linux).

Preliminary Setup

Perform these preliminary setup tasks to simplify the process of launching the NVIDIA GPU Cloud machine image.

Setting Up SSH Keys

If you do not already have SSH keys set up specifically for Alibaba, you will need to set one up and have it on the machine you will use to SSH to the VM. In the examples, the key is named "alibaba-key".

  1. From a browser, log in to the ECS console - https://ecs.console.aliyun.com/.
  2. Open the left navigation menu tab and then click Key Pairs from the Network & Security group.
  3. From the upper right of the screen, click Create Key Pair.
  4. Give it a name, such as "alibaba-key" and click OK. A .pem file will immediately download. This is the ONLY time you can download it.
  5. After downloading the .pem file, move it to the .ssh directory.
    mv alibaba-key.pem ~/.ssh/
    chmod 400 ~/.ssh/alibaba-key.pem 

    On Windows, the location will depend on the SSH client you use, so modify the path above and in the snippets or your SSH client configuration. See the Alibaba documentation for Creating an SSH key pair.

Setting Up a Security Group

In order to create instances, you need to put them in a Security Group.

  1. Log in to the ECS console - https://ecs.console.aliyun.com/.
  2. Open the left navigation menu tab and then click Security Groups from the Network & Security group.
  3. From the upper right of the screen, click Create Security Group.
  4. Give it a name and description, then click OK.
  5. Immediately set the rules using the section Quickly Create Rules.
    1. Check SSH and HTTPS.
    2. At Custom Port Range, select TCP and then enter 5000/5000.
    3. Set Authorization Object = 0.0.0.0/0 or the IP address from which you will access.
    4. Click OK.

      1


(Optional) Installing Alibaba CLI

To use the Alibaba CLI, follow the Alibaba CLI Install Instructions and also install the ECS SDK.

  1. Install the ECS SDK.
    sudo pip install aliyun-python-sdk-ecs 

  2. Configure the CLI with your keys.
    aliyuncli configure 

Launching an NVIDIA GPU Cloud VM with the Alibaba Console

Creating the NVIDIA GPU Cloud VM Instance

  1. Log on the Alibaba Elastic Compute Service (ECS) console - https://marketplace.alibabacloud.com.
  2. Search for NVIDIA GPU, then select the NVIDIA GPU Cloud Virtual Machine Image.
  3. Click Choose your plan from the NVIDIA GPU Cloud Virtual Machine Image product page.

    2

  4. Near the bottom of the page, click ECS Advanced Purchase page.

    3

  5. Make the following selections from the Basic Configurations page.
    1. For Billing Method, select Pay-As-You-Go.

      4

    2. For Region, select one that contains the image (e.g. "US-West 1 Zone B"), and then a region from the dropdown menu (for example, US.West 1 (Silicon Valley)). Note that not all regions support GPU instances.
    3. For Instance Type,click Heterogeneous Compute and then locate and select a GPU Compute Type gn5 instance according to your GPU and memory requirements.
    4. For Image, select Marketplace Image, and then make sure the NVIDIA GPU Cloud Virtual Machine Image is selected .
    5. For Storage, add a disk for dataset storage by clicking Add Disk under Data Disk, and then entering the storage size. Recommended minimum dataset storage size is 1 TB (1024 GB)
    6. Click Next: Networking.
  6. Make the following selections from the Networking page.
    1. For Security Group, click Select Security Group.
    2. Select your security group from the list, then click Select. Make sure you created a Security Group as explained in the section "Setting Up a Security Group".

      5

    3. Click Next: System Configurations.
  7. Make the following selections from the System Configurations page.
    1. Make sure Key Pair is selected for Log On Credentials.
    2. Click the Key Pair list arrow and then select your key pair.
  8. Click Preview, then review your configuration.
  9. Click the Terms of Service check box, indicating your acceptance, and then click Create Instance.

    6

  10. At the Activated message, click Console.

    7

    Wait until your instance status is Running, then you can connect to the instance using SSH.

    8

    9


Connecting to the VM Instance with SSH

Once started, you can SSH into your instance using the SSH key for the root user. If you followed the setup in this tutorial, your key is in ~/.ssh/.

Command syntax:

ssh -i <KEYPATH> root@<IP>

Example:

ssh -i ~/.ssh/alibaba-key.pem root@47.89.248.188

Refer to Connect to a Linux Instance for more instructions on connecting to your instance.

Launching an NVIDIA GPU Cloud Virtual Machine Image Using Alibaba CLI

Using Example Python Scripts

A comprehensive set of example Python scripts for automating the CLI are provided at https://github.com/nvidia/ngc-examples/tree/master/ncsp. You can download the scripts and modify them to meet your requirements. The code examples that follow use similar environment variables and structure as the scripts.

Using the Instructions in This Chapter

This flow and the code snippets in this section are for Linux or Mac OS X. If you are using Windows, you can use the Windows Subsystem for Linux and use the bash shell (where you will be in Ubuntu Linux).

Many of these CLI command can have significant delays.

For complete CLI documentation and sample scripts visit the Alibaba Documentation Center.

Getting the NGC VMI Image ID

Once started, you can SSH into your instance using the SSH key for the root user. If you followed the setup in this tutorial, your key is in ~/.ssh/.

You need to specify a source ImageID when creating an instance. Use this command to find the latest ImageID of the NVIDIA-GPU-Cloud-Machine-Image:

aliyuncli ecs DescribeImages --RegionId us-west-1 \

  --ImageName "NVIDIA-GPU-Cloud-Virtual-Machine" \

  --output json --filter Images.Image[0].ImageId

It will output the Image ID such as "m-rj9iy0xjiod3ghkyhz4p"

Creating Your VM Instance

Creating an instance with the CLI is done using the aliyuncli ecs CreateInstance command.

Full syntax documentation - https://www.alibabacloud.com/help/doc-detail/25499.htm

Recommended Instance Options


  1. "--InternetMaxBandwidthOut 10" sets the peak outbound network bandwidth to 10 Mbps. The valid range is [1, 200].
  2. "--InstanceChargeType PostPaid" sets the billing method to pay-as-you-go. Change this to "PrePaid" to set it to a subscription billing.

Other Notable Create Instance Options

  1. The inbound network bandwidth defaults to 200 Mbps. Use "--InternetMaxBandwidthIn" to change this. The valid range is [1, 200].
  2. To change the size of the system disk (default is 40 GB), use the "--SystemDiskSize" option. Valid values are [40, 500].
  3. To add a data disk (up to 16), use the "--DataDiskNSize" and "--DataDiskNCategory" options where "N" is [1, 16]. Valid values are:

    10

Launch Example

Launch the instance and capture the resulting JSON:

aliyuncli ecs CreateInstance \
  --RegionId us-west-1 \
  --ImageId "m-rj9iy0xjiod3ghkyhz4p" \
  --SecurityGroupId "sg-rj94krsusal2k5l6gnnz" \
  --InstanceType ecs.gn5-c4g1.xlarge \
  --InstanceName "my-instance" \
  --InternetMaxBandwidthOut 10 \
  --InstanceChargeType PostPaid \
  --KeyPairName alibaba-key

The output shows the instance ID.

{
  "InstanceId": "i-rj9a0iw25hryafj0fm4v",
  "RequestId": "440ECC70-09F9-492C-AB9E-21AA9C4E0531"
}

Assigning a Public IP Address

Instances created via CLI are not automatically given a public IP address.

To assign a public IP address to the instance you just created, run:


aliyuncli ecs AllocatePublicIpAddress --RegionId us-west-1 \
  --InstanceId "i-rj9a0iw25hryafj0fm4v"

Successful completion of the command will return the IP address:

{
  "IpAddress": "47.89.248.188",
  "RequestId": "65EB59AE-FA75-446F-B5C7-2BA0F9A77CDC"
}

Starting the Instance

Instances created via CLI are not started automatically.

To start the instance you just created, run:


aliyuncli ecs StartInstance --InstanceId "i-rj9a0iw25hryafj0fm4v"

Connecting to the VM Instance with SSH

Once started, you can SSH into your instance using the SSH key for the root user. If you followed the setup in this tutorial, your key is in ~/.ssh/.

Command syntax:

ssh -i <KEYPATH> root@<IP>

Example:

ssh -i ~/.ssh/alibaba-key.pem root@47.89.248.188

Refer to Connect to a Linux Instance for more instructions on connecting to your instance.

Starting, Stopping, or Deleting Your VM Instance

Once an instance is running, you can stop, (re)start, or delete your instance.

Stop:

aliyuncli ecs StopInstance --InstanceId INSTANCE_ID

Start or Restart:

aliyuncli ecs StartInstance --InstanceId INSTANCE_ID

Delete:

aliyuncli ecs DeleteInstance --InstanceId INSTANCE_ID

Source: https://docs.nvidia.com/ngc/ngc-alibaba-setup-guide/index.html

0 0 0
Share on

Marketplace

21 posts | 12 followers

You may also like

Comments

Marketplace

21 posts | 12 followers

Related Products

  • Deploy NVIDIA on Alibaba Cloud

    Fueled by the insatiable demand for better 3D graphics, and the massive scale of the gaming market, NVIDIA has evolved the GPU into a computer brain at the exciting intersection of virtual reality, high performance computing, and artificial intelligence.

    Learn More
  • GPU(Elastic GPU Service)

    Powerful parallel computing capabilities based on GPU technology.

    Learn More
  • Function Compute

    Alibaba Cloud Function Compute is a fully-managed event-driven compute service. It allows you to focus on writing and uploading code without the need to manage infrastructure such as servers.

    Learn More
  • Marketplace

    Marketplace is an online market for users to search and quickly use the software as image for Alibaba Cloud products.

    Learn More