What is the Sandbox Linex machine password for our account?

sandeep Patnaik 5 Reputation points
2024-07-02T10:40:20.84+00:00

I have tried with my Microsoft account password, but unable to move further. Can anyone help me.

This question is related to the following Learning Module

Azure Training
Azure Training
Azure: A cloud computing platform and infrastructure for building, deploying and managing applications and services through a worldwide network of Microsoft-managed datacenters.Training: Instruction to develop new skills.
1,229 questions
{count} vote

1 answer

Sort by: Most helpful
  1. pnaroju 2,045 Reputation points Microsoft Vendor
    2024-07-02T12:47:49.4+00:00

    Hi sandeep Patnaik,

    Thank you for reaching out to us on the Microsoft Q&A forum.

    In the Exercise - Create an Azure virtual machine under Task 1: Create a Linux virtual machine and install Nginx we have two steps:

    Step 1: To create a Linux VM using "az vm create" command and

    Step 2: To configure Nginx on the VM created using "az vm extension set" command.

    As mentioned in the exercise, we have used generate-ssh-keys for authentication while creating the VM using "az vm create" command rather than a password.

    The "az vm extension set" command uses the Custom Script Extension to run a Bash script on your VM to configure Nginx.

    We can successfully create a Linux VM and configure Nginx on the VM created by following the above steps of Task 1 and complete the exercise without any password. Kindly find the screenshots attached for reference.

    CS1

    CS2

    We don’t have to manually run the command "sudo apt-get update" separately. The Custom Script Extension used in "az vm extension set" command to run a Bash script takes care of invoking "sudo apt-get update" automatically with elevated permissions. By running the script, the command automatically runs 'sudo apt-get update' with the saved SSH key files.

    If we manually run the command "sudo apt-get update"(not required as per the exercise), the system prompts us to enter a password.

    CS3

    As we have used SSH key pairs for authentication rather than a password, we cannot enter a password.

    If we want to connect to the VM created (without a password in this case for Linux VM) we need to do ssh to the vm created, before we can use sudo.

    After completing Step 1, create a Linux VM of Task 1, make a note of the publicIpAddress that was assigned to the VM (for example:20.66.97.117).

    Connect to the newly created VM using ssh (in cloud shell). We need to substitute the publicIpAddress noted above for <VM public ip address> in the command below:

    "ssh azureuser@<VM public ip address>"

    Enter 'yes' when you are prompted.

    CS4

    Now we have successfully connected to the VM without using password and we can work in the VM. We can see our VM name as "my-vm" in the screenshot below which is same as given in "az vm create" command.

    CS5

    Copy and right-click, then paste the following commands in the Cloud Shell window one after another. Wait for each command to complete before pasting the next command.

      1.sudo apt-get update  

      2.sudo apt-get install -y nginx  

    3.echo "<html><body><h2>Welcome to Azure! My name is $(hostname). </h2></body> </html>" | sudo tee -a /var/www/html/index.html  

    By following these steps, we can successfully complete Task 1 of the exercise.

    If we want to exit from the VM and come into CLI screen we use "exit" command.

    CS6

    Should you have further questions or need additional assistance, please feel free to reach out. We are happy to help you.

    If you find this information beneficial, please indicate your acknowledgment by clicking the "Upvote" and "Accept Answer" buttons on the post.

    0 comments No comments