mirror of
https://github.com/clearlinux/clear-linux-documentation.git
synced 2026-08-25 09:27:37 +00:00
Update the MS Azure Tutorial
Update the MS Azure tutorial to use Azure CLI 2.0 Signed-off-by: Tom Leavitt <30448839+tpleavitt@users.noreply.github.com>
This commit is contained in:
@@ -1,125 +1,481 @@
|
||||
.. _azure:
|
||||
|
||||
Clear Linux\* OS on Microsoft\* Azure\*
|
||||
#######################################
|
||||
Run Clear Linux using Microsoft Azure CLI 2.0
|
||||
#############################################
|
||||
|
||||
Clear Linux OS is now an offering in the Azure Marketplace.
|
||||
|CLOSIA| is available for you to use in the Microsoft* Azure* marketplace and
|
||||
is offered with three different images:
|
||||
|
||||
Clear Linux OS is designed with cloud and data center environments in mind
|
||||
and is tuned to maximize the performance and value of Intel® architecture.
|
||||
In Azure our boot times are lightning-quick, with all on-boot services
|
||||
launched in less than a second on nodes with warm caches [1]_.
|
||||
* |CL| Basic - A bare-bones system which can be used as a starting point for
|
||||
those wanting to explore and build out a system with additional software
|
||||
bundles of their choosing.
|
||||
|
||||
There are three offerings of Clear Linux OS within the Azure Marketplace.
|
||||
They can be created through the `Azure Portal <https://portal.azure.com>`_ or
|
||||
by using the `Azure Command Line tools <https://github.com/Azure/azure-cli>`_.
|
||||
Each offering can be further customized by using the swupd command to
|
||||
install additional bundles. Learn more about Clear Linux OS and bundles in
|
||||
our :ref:`documentation<clear-linux>`.
|
||||
* |CL| Containers - This offering comes with the containers-basic software
|
||||
bundle already installed.
|
||||
|
||||
For additional information visit the Clear Linux
|
||||
`Azure Partner Mini Case Study`_ and the `Azure Partner Datasheet`_
|
||||
|
||||
Offerings
|
||||
=========
|
||||
|
||||
The three offerings, and the commands to launch VM instances from the command line for each, are:
|
||||
|
||||
* **Basic** - This is a bare-bones generic offering, from which users may
|
||||
extend functionality by adding bundles of their choosing:
|
||||
|
||||
* **Containers** - This offering comes with the containers-basic bundle already
|
||||
installed.
|
||||
|
||||
* **Machine Learning** - This offering comes pre-loaded with popular open
|
||||
* |CL| Machine-learning - This offering comes pre-loaded with popular open
|
||||
source tools for developing machine learning applications.
|
||||
|
||||
Azure Command Line Interface
|
||||
============================
|
||||
You can access these images directly from your MS Azure dashboard through the
|
||||
`Azure portal`_ or by using the MS Azure :abbr:`CLI (Command Line Interface)`
|
||||
2.0. If you do not already have an account set up with MS Azure, you can sign
|
||||
up for a `MS Azure free account`_ to access the |CL|
|
||||
:abbr:`VM(Virtual Machine)` images.
|
||||
|
||||
The Azure Command Line Interface offers the ability to create and manage
|
||||
resources in Azure from the command line. The examples here are based on
|
||||
Version 1.0 of the Azure CLI, which is implemented in Javascript and
|
||||
distributed through the Node Package Manager. Version 2.0 of the Azure CLI is
|
||||
implemented in Python. This example will be updated when Azure CLI 2.0 is fully
|
||||
released.
|
||||
resources in Azure from the command line. In this tutorial you learn to:
|
||||
|
||||
The following command shows the version number of the most recent images that
|
||||
have been uploaded into the Azure Marketplace.
|
||||
#. Install the latest MS Azure CLI on your |CL| machine.
|
||||
|
||||
::
|
||||
#. Log into MS Azure using the CLI 2.0 interface.
|
||||
|
||||
azure vm image list -p clear-linux-project -l westus -o clear-linux-os | grep -v "Getting" | cut -f5 -d: | sed -e 's/\s*//g'| sed -e 's/\..*//' | sort -u | tail -1
|
||||
#. Locate the |CL| images.
|
||||
|
||||
The following scriplet can be used to create and start a virtual machine
|
||||
instance in Azure based on a marketplace offering. The resource group needs to
|
||||
already exist. This script tries to use a resource group of the form
|
||||
"<azure_username>-clr-vms". For example, for an Azure user named Rob trying to
|
||||
create an instance of version ``12920`` of the ``basic`` offering for Clear
|
||||
Linux OS, this script creates an instance with the public hostname of
|
||||
``rob-12920-basic-1234``.
|
||||
#. Create a MS Azure resource group.
|
||||
|
||||
::
|
||||
#. Create a |CL| virtual machine.
|
||||
|
||||
#!/bin/bash
|
||||
clrversion=XXXXX
|
||||
azuser='azure_username'
|
||||
location="westus"
|
||||
resourceGroup="${azuser}-clr-vms"
|
||||
offering=basic
|
||||
# offering=containers
|
||||
# offering=machine-learning
|
||||
uniquesuffix=$((1 + RANDOM % 1000)) # More like "probably unique suffix"...
|
||||
#. Log into the |CL| VM and use it.
|
||||
|
||||
azure vm create --vm-size Standard_D1_v2 \
|
||||
--admin-username ${azuser} \
|
||||
--ssh-publickey-file ~/.ssh/id_rsa.pub \
|
||||
--name=${azuser}-${clrversion}-${offering}-${uniquesuffix} \
|
||||
--location=${location} \
|
||||
--resource-group ${resourceGroup} \
|
||||
--os-type Linux \
|
||||
--image-urn clear-linux-project:clear-linux-os:${offering}:${clrversion}.0.0 \
|
||||
--nic-name clr-nic1 \
|
||||
--vnet-name ${clrversion}-${offering}-vnet \
|
||||
--vnet-address-prefix 10.0.0.0/8 \
|
||||
--vnet-subnet-name ${clrversion}-vnet-subnet \
|
||||
--vnet-subnet-address-prefix 10.0.0.0/8 \
|
||||
--plan-name ${offering} \
|
||||
--plan-publisher clear-linux-project \
|
||||
--plan-product clear-linux-os \
|
||||
--public-ip-domain-name ${azuser}-${clrversion}-${offering}-${uniquesuffix} \
|
||||
--public-ip-allocation-method "Dynamic" \
|
||||
--public-ip-name "${clrversion}-${offering}-${uniquesuffix}"
|
||||
#. Stop the |CL| VM.
|
||||
|
||||
#. Deallocate resources to stop incurring charges.
|
||||
|
||||
Install MS Azure CLI 2.0 on Clear Linux
|
||||
***************************************
|
||||
|
||||
Prerequisites for using the MS Azure CLI 2.0 on your |CL| system require you
|
||||
to have Python 2.7 or later, libffi, and OpenSSL 1.0.2 installed. If you need
|
||||
to install these packages on your |CL| machine, install the sysadmin-basic
|
||||
software bundle using the :command:`swupd` command:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
sudo swupd bundle-add sysadmin-basic
|
||||
|
||||
.. note::
|
||||
|
||||
These instructions are for installing the MS Azure CLI 2.0 tools on a |CL|
|
||||
system. If you are installing the CLI on another platform, follow the
|
||||
instructions in the `MS Azure Install Azure CLI tutorial`_ for your
|
||||
specific operating system.
|
||||
|
||||
To install the MS Azure CLI 2.0 on |CL|, use the :command:`curl` command as
|
||||
shown:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
curl -L https://aka.ms/InstallAzureCli | bash
|
||||
|
||||
If you get an error message from :command:`curl` related to the -L parameter,
|
||||
or an error message is generated that includes the text "Object Moved", use
|
||||
the full URL instead of the aka.ms redirect address:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
curl https://azurecliprod.blob.core.windows.net/install | bash
|
||||
|
||||
The installation script begins and prompts you several times during execution
|
||||
for information.
|
||||
|
||||
.. note::
|
||||
|
||||
Your username will be substituted for :envvar:`$USER` in these prompts.
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
===> In what directory would you like to place the install? (leave blank to use '/home/$USER/lib/azure-cli'):
|
||||
|
||||
Press the :kbd:`Enter` key to accept the default or you can chose another
|
||||
directory to install the MS Azure CLI 2.0 tools into.
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
===> In what directory would you like to place the 'az' executable? (leave blank to use '/home/$USER/bin'):
|
||||
|
||||
Press the :kbd:`Enter` key to accept the default or you can chose another
|
||||
directory to install the :command:`az` executable in.
|
||||
|
||||
The installation downloads and builds all required tools and when complete
|
||||
prompts you with:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
===> Modify profile to update your $PATH and enable shell/tab completion now? (Y/n): Y
|
||||
|
||||
Type :kbd:`y` and press the :kbd:`Enter` key to allow this modification.
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
===> Enter a path to an rc file to update (leave blank to use '/home/$USER/.bashrc'):
|
||||
|
||||
Press the :kbd:`Enter` key to accept the default or enter the pathname to your
|
||||
:file:`.bashrc` file. The installation completes with the final output shown
|
||||
below:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
-- Backed up '/home/$USER/.bashrc' to '/home/$USER/.bashrc.backup'
|
||||
-- Tab completion set up complete.
|
||||
-- If tab completion is not activated, verify that '/home/$USER/.bashrc' is sourced by your shell.
|
||||
--
|
||||
-- ** Run `exec -l $SHELL` to restart your shell. **
|
||||
--
|
||||
-- Installation successful.
|
||||
-- Run the CLI with /home/tom/bin/az --help
|
||||
|
||||
The installation program finishes and you need to restart your shell for the
|
||||
changes to take effect. If the installation is successful, run the following
|
||||
command to restart your shell.
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
exec -l $SHELL
|
||||
|
||||
With the MS Azure CLI 2.0 executable successfully built and installed, run the
|
||||
:command:`az` command.
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
az
|
||||
|
||||
The output from the :command:`az` command is shown below:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
|
||||
/\
|
||||
/ \ _____ _ _ __ ___
|
||||
/ /\ \ |_ / | | | \'__/ _ \
|
||||
/ ____ \ / /| |_| | | | __/
|
||||
/_/ \_\/___|\__,_|_| \___|
|
||||
|
||||
SSH Sessions
|
||||
============
|
||||
|
||||
To keep SSH sessions to Clear Linux Guests in Azure from being dropped
|
||||
after periods of inactivity, you can give the following option to SSH via
|
||||
the command line::
|
||||
Welcome to the cool new Azure CLI!
|
||||
|
||||
-o ServerAliveInterval=180
|
||||
Here are the base commands:
|
||||
|
||||
Alternatively, you can add this setting to your SSH config file as shown
|
||||
below::
|
||||
account : Manage Azure subscription information.
|
||||
acr : Manage Azure Container Registries.
|
||||
acs : Manage Azure Container Services.
|
||||
ad : Synchronize on-premises directories and manage Azure Active Directory
|
||||
resources.
|
||||
advisor : (PREVIEW) Manage Azure Advisor.
|
||||
aks : Manage Kubernetes clusters.
|
||||
appservice : Manage App Service plans.
|
||||
backup : Commands to manage Azure Backups.
|
||||
batch : Manage Azure Batch.
|
||||
batchai : Batch AI.
|
||||
billing : Manage Azure Billing.
|
||||
cdn : Manage Azure Content Delivery Networks (CDNs).
|
||||
cloud : Manage registered Azure clouds.
|
||||
cognitiveservices: Manage Azure Cognitive Services accounts.
|
||||
configure : Display and manage the Azure CLI 2.0 configuration. This command is
|
||||
interactive.
|
||||
consumption : Manage consumption of Azure resources.
|
||||
container : (PREVIEW) Manage Azure Container Instances.
|
||||
cosmosdb : Manage Azure Cosmos DB database accounts.
|
||||
disk : Manage Azure Managed Disks.
|
||||
dla : (PREVIEW) Manage Data Lake Analytics accounts, jobs, and catalogs.
|
||||
dls : (PREVIEW) Manage Data Lake Store accounts and filesystems.
|
||||
eventgrid : Manage Azure Event Grid topics and subscriptions.
|
||||
extension : Manage and update CLI extensions.
|
||||
feature : Manage resource provider features.
|
||||
feedback : Loving or hating the CLI? Let us know!
|
||||
find : Find Azure CLI commands.
|
||||
functionapp : Manage function apps.
|
||||
group : Manage resource groups and template deployments.
|
||||
image : Manage custom virtual machine images.
|
||||
interactive : Start interactive mode.
|
||||
iot : (PREVIEW) Manage Internet of Things (IoT) assets.
|
||||
keyvault : Safeguard and maintain control of keys, secrets, and certificates.
|
||||
lab : Manage Azure DevTest Labs.
|
||||
lock : Manage Azure locks.
|
||||
login : Log in to Azure.
|
||||
logout : Log out to remove access to Azure subscriptions.
|
||||
managedapp : Manage template solutions provided and maintained by Independent Software
|
||||
Vendors (ISVs).
|
||||
monitor : Manage the Azure Monitor Service.
|
||||
mysql : Manage Azure Database for MySQL servers.
|
||||
network : Manage Azure Network resources.
|
||||
policy : Manage resource policies.
|
||||
postgres : Manage Azure Database for PostgreSQL servers.
|
||||
provider : Manage resource providers.
|
||||
redis : Access to a secure, dedicated Redis cache for your Azure applications.
|
||||
reservations : Manage Azure Reservations.
|
||||
resource : Manage Azure resources.
|
||||
role : Manage user roles for access control with Azure Active Directory and service
|
||||
principals.
|
||||
sf : Manage and administer Azure Service Fabric clusters.
|
||||
snapshot : Manage point-in-time copies of managed disks, native blobs, or other
|
||||
snapshots.
|
||||
sql : Manage Azure SQL Databases and Data Warehouses.
|
||||
storage : Manage Azure Cloud Storage resources.
|
||||
tag : Manage resource tags.
|
||||
vm : Provision Linux or Windows virtual machines.
|
||||
vmss : Manage groupings of virtual machines in an Azure Virtual Machine Scale Set
|
||||
(VMSS).
|
||||
webapp : Manage web apps.
|
||||
|
||||
Host *:
|
||||
ServerAliveInterval 180
|
||||
Log into your Microsoft Azure account
|
||||
*************************************
|
||||
|
||||
.. [1]
|
||||
Software and workloads used in performance tests may have been optimized
|
||||
for performance only on Intel microprocessors. Performance tests are
|
||||
measured using specific computer systems, components, software, operations
|
||||
and functions. Any change to any of those factors may cause the results to
|
||||
vary. You should consult other information and performance tests to assist
|
||||
you in fully evaluating your contemplated purchases, including the
|
||||
performance of that product when combined with other products. For more
|
||||
complete information, visit http://www.intel.com/performance/datacenter.
|
||||
Configuration: Clear Linux OS release 11130 on SKU Standard_DS3_v2 in
|
||||
Microsoft\* Azure\*.
|
||||
With the :command:`az` command properly installed and functional, login to
|
||||
your MS Azure account using the :command:`az login` command. You will be
|
||||
prompted to open your browser and enter the displayed URL and enter the code
|
||||
XXXXXXXXX to authenticate, where XXXXXXXXX is a random code generated for each
|
||||
session.
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
az login
|
||||
|
||||
The output from this command is:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
To sign in, use a web browser to open the page https://aka.ms/devicelogin and enter the code XXXXXXXXX to authenticate.
|
||||
|
||||
Following the instructions, the website takes you too a MS Azure device login
|
||||
page and asks you to enter the generated code. Enter the code and the
|
||||
website changes to a browser screen to enter your existing Microsoft Azure
|
||||
credentials. Log in with your Azure account credentials. Once complete, the
|
||||
browser screen changes, telling you that you have signed in to the Microsoft
|
||||
Cross-platform Command Line Interface application on your device and you can
|
||||
close the window. The MS Azure CLI 2.0 interface is now active with your
|
||||
Azure account information.
|
||||
|
||||
Locate the Clear Linux image
|
||||
****************************
|
||||
|
||||
You can locate the available clear linux images in the MS Azure marketplace by
|
||||
running the following :command:`az` command:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
az vm image list --offer clear-linux --all --output table
|
||||
|
||||
This command may take some time to finish and the output lists all available
|
||||
|CL| images available in the Microsoft Azure marketplace and is shown below:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
Offer Publisher Sku Urn Version
|
||||
-------------- ------------------- ---------------- ------------------------------------------------------------- ---------
|
||||
clear-linux-os clear-linux-project basic clear-linux-project:clear-linux-os:basic:15780.0.0 15780.0.0
|
||||
clear-linux-os clear-linux-project basic clear-linux-project:clear-linux-os:basic:15960.0.0 15960.0.0
|
||||
clear-linux-os clear-linux-project basic clear-linux-project:clear-linux-os:basic:16050.0.0 16050.0.0
|
||||
clear-linux-os clear-linux-project basic clear-linux-project:clear-linux-os:basic:16150.0.0 16150.0.0
|
||||
clear-linux-os clear-linux-project basic clear-linux-project:clear-linux-os:basic:16500.0.0 16500.0.0
|
||||
clear-linux-os clear-linux-project basic clear-linux-project:clear-linux-os:basic:16810.0.0 16810.0.0
|
||||
clear-linux-os clear-linux-project basic clear-linux-project:clear-linux-os:basic:18080.0.0 18080.0.0
|
||||
clear-linux-os clear-linux-project basic clear-linux-project:clear-linux-os:basic:18620.0.0 18620.0.0
|
||||
clear-linux-os clear-linux-project basic clear-linux-project:clear-linux-os:basic:18860.0.0 18860.0.0
|
||||
clear-linux-os clear-linux-project containers clear-linux-project:clear-linux-os:containers:15780.0.0 15780.0.0
|
||||
clear-linux-os clear-linux-project containers clear-linux-project:clear-linux-os:containers:15960.0.0 15960.0.0
|
||||
clear-linux-os clear-linux-project containers clear-linux-project:clear-linux-os:containers:16050.0.0 16050.0.0
|
||||
clear-linux-os clear-linux-project containers clear-linux-project:clear-linux-os:containers:16150.0.0 16150.0.0
|
||||
clear-linux-os clear-linux-project containers clear-linux-project:clear-linux-os:containers:16500.0.0 16500.0.0
|
||||
clear-linux-os clear-linux-project containers clear-linux-project:clear-linux-os:containers:16810.0.0 16810.0.0
|
||||
clear-linux-os clear-linux-project containers clear-linux-project:clear-linux-os:containers:18080.0.0 18080.0.0
|
||||
clear-linux-os clear-linux-project containers clear-linux-project:clear-linux-os:containers:18620.0.0 18620.0.0
|
||||
clear-linux-os clear-linux-project containers clear-linux-project:clear-linux-os:containers:18860.0.0 18860.0.0
|
||||
clear-linux-os clear-linux-project machine-learning clear-linux-project:clear-linux-os:machine-learning:15780.0.0 15780.0.0
|
||||
clear-linux-os clear-linux-project machine-learning clear-linux-project:clear-linux-os:machine-learning:15960.0.0 15960.0.0
|
||||
clear-linux-os clear-linux-project machine-learning clear-linux-project:clear-linux-os:machine-learning:16050.0.0 16050.0.0
|
||||
clear-linux-os clear-linux-project machine-learning clear-linux-project:clear-linux-os:machine-learning:16150.0.0 16150.0.0
|
||||
clear-linux-os clear-linux-project machine-learning clear-linux-project:clear-linux-os:machine-learning:16500.0.0 16500.0.0
|
||||
clear-linux-os clear-linux-project machine-learning clear-linux-project:clear-linux-os:machine-learning:16810.0.0 16810.0.0
|
||||
clear-linux-os clear-linux-project machine-learning clear-linux-project:clear-linux-os:machine-learning:18080.0.0 18080.0.0
|
||||
clear-linux-os clear-linux-project machine-learning clear-linux-project:clear-linux-os:machine-learning:18620.0.0 18620.0.0
|
||||
clear-linux-os clear-linux-project machine-learning clear-linux-project:clear-linux-os:machine-learning:18860.0.0 18860.0.0
|
||||
|
||||
The information shown in the `Urn` column lists the
|
||||
`Publisher:Offer:Sku:Version` for each image available and this is the
|
||||
information to use to create the |CL| VM. Since we are creating a |CL| basic
|
||||
VM, highlight the `clear-linux-project:clear-linux-os:basic:` string and copy
|
||||
it to your clipboard. For the version you can use the label `latest` instead
|
||||
of referencing a specific version, which is what we will do when we create our
|
||||
VM in a moment.
|
||||
|
||||
Create a MS Azure resource group
|
||||
********************************
|
||||
|
||||
With all the information gathered, we need to create a resource group to
|
||||
manage multiple resources within MS Azure for our |CL| VM. To learn more about
|
||||
resource groups, visit the `Azure Resource Manager overview`_ for an overview
|
||||
and detailed description of resources within MS Azure.
|
||||
|
||||
To create our new resource group, run the :command:`az` command shown below to
|
||||
create a resource group named `ClearResourceGroup` and locate it in the
|
||||
`westus` region.
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
az group create -n ClearResourceGroup -l westus
|
||||
|
||||
When the command has completed, the output from this command is similar to
|
||||
the following:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
{
|
||||
"id": "/subscriptions/{unique-id}/resourceGroups/ClearResourceGroup",
|
||||
"location": "westus",
|
||||
"managedBy": null,
|
||||
"name": "ClearResourceGroup",
|
||||
"properties": {
|
||||
"provisioningState": "Succeeded"
|
||||
},
|
||||
"tags": null
|
||||
}
|
||||
|
||||
Create a |CL| virtual machine
|
||||
*****************************
|
||||
|
||||
To create a new |CL| VM, run the following :command:`az` command using the
|
||||
URN `:clear-linux-project:clear-linux-os:basic:latest` that we located earlier
|
||||
in our search for the |CL| images available in the MS Azure marketplace:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
az vm create --resource-group ClearResourceGroup --name ClearVM --image clear-linux-project:clear-linux-os:basic:latest --generate-ssh-keys
|
||||
|
||||
.. note::
|
||||
|
||||
If you have already defined your public/private SSH key pair and they are
|
||||
stored in your :file:`$HOME/.ssh` directory, you do not need to include the
|
||||
:parameter:`--generate-ssh-keys` parameter.
|
||||
|
||||
Your output from this command will look similar to this output, where $USER is
|
||||
your user name:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
SSH key files '/home/$USER/.ssh/id_rsa' and '/home/$USER/.ssh/id_rsa.pub' have been generated under ~/.ssh to allow SSH access to the VM. If using machines without permanent storage, back up your keys to a safe location.
|
||||
|
||||
running...
|
||||
|
||||
{
|
||||
"fqdns": "",
|
||||
"id": "/subscriptions/{unique-id}/resourceGroups/ClearResourceGroup/providers/Microsoft.Compute/virtualMachines/ClearVM",
|
||||
"location": "westus",
|
||||
"macAddress": "00-0D-3A-37-C7-59",
|
||||
"powerState": "VM running",
|
||||
"privateIpAddress": "10.0.0.4",
|
||||
"publicIpAddress": "13.91.4.245",
|
||||
"resourceGroup": "ClearResourceGroup",
|
||||
"zones": ""
|
||||
}
|
||||
|
||||
Take note of the public IP address from your output. To login into the new
|
||||
|CL| VM, run the :command:`ssh` command with the public IP address listed as
|
||||
shown:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
ssh 13.91.4.245
|
||||
|
||||
You may see the following message about the authenticity of the host. If this
|
||||
appears, type `yes` to proceed connecting to your new |CL| VM.
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
The authenticity of host '13.91.4.245 (13.91.4.245)' can't be established.
|
||||
RSA key fingerprint is SHA256:{unique-number}.
|
||||
Are you sure you want to continue connecting (yes/no)? yes
|
||||
Warning: Permanently added '13.91.4.245' (RSA) to the list of known hosts.
|
||||
|
||||
USER@ClearVM ~ $
|
||||
|
||||
You are now logged into your new |CL| VM as USER, where USER is your user
|
||||
name. Let's check to see which software bundles have been included with this
|
||||
image by running the :command:`swupd` command:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
USER@ClearVM ~ $ sudo swupd bundle-list
|
||||
swupd-client bundle list 3.14.1
|
||||
Copyright (C) 2012-2017 Intel Corporation
|
||||
|
||||
bootloader
|
||||
editors
|
||||
kernel-hyperv
|
||||
network-basic
|
||||
openssh-server
|
||||
os-cloudguest-azure
|
||||
os-core
|
||||
os-core-update
|
||||
perl-basic
|
||||
python-basic
|
||||
python3-basic
|
||||
storage-utils
|
||||
sysadmin-basic
|
||||
Current OS version: 19600
|
||||
USER@ClearVM ~ $
|
||||
|
||||
When you are finished using your new |CL| VM, type :command:`exit` to close
|
||||
the terminal and logout.
|
||||
|
||||
Stop and deallocate the Clear Linux VM
|
||||
**************************************
|
||||
|
||||
When you are finished using your new |CL| instance, you need to stop the VM
|
||||
and deallocate the resources to stop incurring charges for this instance. At
|
||||
your command prompt, enter the :command:`az vm stop...` command as follows:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
az vm stop --resource-group ClearResourceGroup --name ClearVM
|
||||
|
||||
This will stop the VM and then output text similar to what is shown below:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
{
|
||||
"endTime": "2017-12-13T23:04:02.346676+00:00",
|
||||
"error": null,
|
||||
"name": "{unique-name}",
|
||||
"startTime": "2017-12-13T23:03:59.018536+00:00",
|
||||
"status": "Succeeded"
|
||||
}
|
||||
|
||||
|
||||
Once the VM has stopped, deallocate the VM resources to stop incurring charges
|
||||
for the |CL| instance. Enter the following command:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
az vm deallocate --resource-group ClearResourceGroup --name ClearVM
|
||||
|
||||
Next steps
|
||||
**********
|
||||
|
||||
Congratulations! You are up and running with |CL| on MS Azure using the Azure
|
||||
CLI 2.0 command line tools. To see what you can do with your |CL| instance,
|
||||
visit our :ref:`tutorials <tutorials>` section for examples on using your |CL|
|
||||
system.
|
||||
|
||||
For additional information visit the Clear Linux
|
||||
`Azure Partner Mini Case Study`_ and the `Azure Partner Datasheet`_.
|
||||
|
||||
To learn more about the MS Azure CLI 2.0 tool and options that are available,
|
||||
visit the `MS Azure documentation and tutorials`_ website.
|
||||
|
||||
.. _`Azure Portal`:
|
||||
https://portal.azure.com
|
||||
|
||||
.. _`MS Azure free account`:
|
||||
https://azure.microsoft.com/en-us/free/
|
||||
|
||||
.. _`MS Azure documentation and tutorials`:
|
||||
https://docs.microsoft.com/en-us/cli/azure/overview?view=azure-cli-latest
|
||||
|
||||
.. _`MS Azure Install Azure CLI tutorial`:
|
||||
https://docs.microsoft.com/en-us/cli/azure/install-azure-cli?view=azure-cli-latest
|
||||
|
||||
.. _`Azure Resource Manager overview`:
|
||||
https://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-group-overview
|
||||
|
||||
.. _Azure Partner Datasheet:
|
||||
http://download.microsoft.com/download/D/9/E/D9E22342-96D9-4455-BB15-99A1AF514DDD/Microsoft%20Azure%20Partner%20Datasheet%20-%20Intel%20Clear%20Linux.pdf
|
||||
|
||||
Reference in New Issue
Block a user