Versions Compared

Key

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

Online resources

...

...

...

Quick start instructions

Based on the quick start pageinstructions


    Login to the Web Dashboard
    (the Domain field should be set domain to 'ed')

    Create an SSH Key Pair
    (or upload the public part of an existing key)


Create an instance

    Launch an instance, by selecting 'Instances' in the left hand navigation, and then select the 'Launch Instance
    (select instances)
    (launch instance)
        Details             Name  'one'
                            Zone  'nova'
        Source              Boot  'image'
                            Image 'Centos7'
        Flavour             + m1.small
        Network             + VM Network Private       Ports                  -----
        Security            default
        SSH key             + mykey
        Custom              -------
        Server group        -------
        Scheduler           -------
        Metadata            -------
        Create instance
    Action
        Associate floating IP
            Select IP address [+]
                Pool
                ' button on the right.


Image AddedImage Added

Details panel

  • Give you VM a name
  • Select 'nova' as the zone
  • Set count to 1

Source panel

Select 'Boot Image' from the source drop down.

Add the image you want to use, e.g. Centos7, by clicking on the plus sign.

Flavour panel

Add the 'flavour' (size) of VM you want by clicking on the plus sign. Note - free accounts are only allowed t1.tiny.

Network panel

Add the network that you want the VM to be connected to. For internal use, select 'VM Network Private'

Network Ports

Leave this panel unchanged

Security panel

Check the VM is in the 'Default security group'

Key Pair panel

Add your ssh key to your VM, by clicking on the plus sign.

Configuration

Leave this panel unchanged

Server groups

Leave this panel unchanged

Scheduler

Leave this panel unchanged

Metadata

Leave this panel unchanged

Create the VM

Click on the big blue 'Launch Instance' button to launch your VM instance.

Image Added
Configure instance

To configure the network connection, select 'Associate floating IP' from the 'Actions list for your VM instance.

Image Added

Click on the plus sign to allocate a new IP address for your VM instance to use.

Image Added      
Select 'Floating Network Private (UoE access only)
                >> Allocate IP
                ....
                >> Associate' as the pool, and then click the big blue 'Allocate IP' button.

Image AddedImage Added

Finally, click the big blue 'Associate' button to associate the allocated IP address with your VM instance.

Image Added





        SSH login

            ssh centos@172.16.49.73

#---------------------------------------------------------------------
# Fix the DNS servers (NOT permanent)
#[root@virtual]

    cat > /etc/resolv.conf << EOF
    search roe.ac.uk
    nameserver 129.215.166.13
    nameserver 129.215.70.239
    EOF


#---------------------------------------------------------------------
# Update the system.
#[root@virtual]

    yum update -y



...