Versions Compared

Key

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

...

  • M1 class flavors are General Purpose Instances. This family provides a balance of compute, memory, and network resources, and it is a good choice for many applications.

  • G1 instances are intended for general-purpose GPU compute applications. Uses Use cases include machine learning, rendering, and other server-side GPU compute workloads. (see GPU-Enabled Instances for more on how to launch GPU instances.)

...

The private address, called a fixed-ip in OpenStack, is not publicly routable (that is, not reachable from the public internet; though see the Proxy section Making the most of a single IPv4 address section for more on this) and is used by the OpenStack application stack to provision the instance. The private address can also be used to communicate between instances without the need of routing traffic out on the internet and back again. The private addresses are assigned from a range of 10.1.0.0 - 10.2.254.254.

...

This limitation on IP address availability can be overcome, and in fact can make for a more robust and secure cloud environment in some cases. Please see the Advanced Guide - Making the most of a single IPv4 Address section for solutions to this problem. 

...

As mentioned in the Accessing Instances section, connecting to an instance via IPv6 is preferred over using a Floating IP. Please see the links above to determine if you have IPv6 connectivity (Telus and University of Alberta users are known to have IPv6 connectivity). If you do have IPv6 connectivity, replace "floating_ip_address" with your instance's IPv6 address in the instructions below.

...

  1. Open a terminal and enter:

...

  1.  

    Code Block
    $ ssh 

...

  1. -i /path/to/<key_pair_name>.pem ubuntu@<floating_ip_address>

...

  1. Answer ‘yes’ to the following question:

...

  1.  

    Code Block
    The authenticity of host '<floating_ip_address> (<floating_ip_address>)' can't be established.

...

  1. 
    RSA key fingerprint is e5:de:ad:c3:be:ef:b2:ba:be:a1:ba:dc:af:ea:ce:d4.

...

  1. 
    Are you sure you want to continue connecting (yes/no)?

...

  1. You are now logged in and will then be presented with the Message Of The Day and a shell prompt: 

    Code Block
    ----------------------------

...

  1. 
    Cloud Image Helper Scripts

...

  1. 
    ----------------------------

...

  1. 
    To enable automatic updates please run:

...

  1. 
    /usr/local/bin/enableAutoUpdate

...

  1.  
    To install the latest OpenStack tools please run:

...

  1. 
    /usr/local/bin/installOpenStackTools

...

  1. 
    To use the local software update proxy please run:

...

  1. 
    /usr/local/bin/localSUS

...

  1. 
    To remove this message from your message of the day please run:

...

  1. 
    sudo rm /etc/motd

...

  1. 
    ubuntu@<your_instance_name>:~$

From Windows

There are plenty of applications that allow ssh access from within Windows, none of which are bundled with Windows (at this time). You are welcome to use any that fit your needs, however puTTY is a widely used and well supported suite of SSH utilities that includes key management and generation, an scp client and the ssh client itself.

...

  1. Log-in to the Rapid Access Cloud dashboard at https://cloud.cybera.ca.

  2. In the left-hand panel under “Compute”, click “Volumes”.

  3. Click the Action drop-down button on the right-hand side and select “Manage Attachments”.

  4. Under “Attach to Instance” select the instance the volume is be attached to, then click the blue “Attach Volume” button.

  5. After a few moments, the volume will be attached. Take note of the “Attached to” column on the summary screen, it will list where it is attached like “/dev/sdc”.

Use a volume

  1. Log into your instance via ssh.

  2. Format the volume:

...

  1.  

    Code Block
    $ sudo 

...

  1. mkfs.ext4 /dev/sdc

...

Status
colourBlue
titleNote

...

  1. Info

    Attached volumes will typically be assigned device names in sequential order (i.e. /dev/sdc, /dev/sdd, /dev/sde, etc.)

...

          $ sudo fdisk -l

...

  1. List all disks from within the instance with:

...

  1.  

    Code Block
    $ sudo fdisk -l
    Info
  1. /dev/sda and /dev/sdb are the system volumes that make up the instance.

...

  1. Create a mount point for the volume:

...

  1.  

    Code Block
    $ sudo mkdir /mnt/<mount_point_name>

...

  1. Mount the volume device to the mount point:

...

  1.  

    Code Block
    $ sudo mount /dev/sdc /mnt/<mount_point_name>

...

...

  1. Permissions may need to be changed on the new volume, as they are initially set to root:

...

  1.  

    Code Block
    $ sudo chown ubuntu:ubuntu /mnt/<mount_point_name>

...

Backups 

The Cybera Rapid Access Cloud is offered on a best-effort basis and it is the users’ responsibility to ensure appropriate backups of all their data are made. While Cybera’s record for uptime and data-loss is very good, we strongly encourage all of our users to ensure regular backups are made.

...