Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
Sichere ProgrammierungThe Homelab Is the New Resume(21.09.2026 um 00:29 Uhr)
Sichere ProgrammierungPerl 🐪 Weekly #791 - The Dark Side is here!(21.09.2026 um 00:44 Uhr)
Sichere Programmierungbro.js v3.0.0 – What’s new(21.09.2026 um 00:44 Uhr)
Sichere ProgrammierungFour bugs my test suite couldn't catch(21.09.2026 um 00:49 Uhr)
Sichere ProgrammierungAutomating Deployment with Github Actions(21.09.2026 um 00:49 Uhr)
Linux Tipps & HardeningKernel prepatch 7.3-rc4(21.09.2026 um 00:52 Uhr)
IT NachrichtenHow to use Xbox mode on your Windows PC(21.09.2026 um 00:30 Uhr)
Sichere ProgrammierungThe Homelab Is the New Resume(21.09.2026 um 00:29 Uhr)
Sichere ProgrammierungPerl 🐪 Weekly #791 - The Dark Side is here!(21.09.2026 um 00:44 Uhr)
Sichere Programmierungbro.js v3.0.0 – What’s new(21.09.2026 um 00:44 Uhr)
Sichere ProgrammierungFour bugs my test suite couldn't catch(21.09.2026 um 00:49 Uhr)
Sichere ProgrammierungAutomating Deployment with Github Actions(21.09.2026 um 00:49 Uhr)
Linux Tipps & HardeningKernel prepatch 7.3-rc4(21.09.2026 um 00:52 Uhr)
IT NachrichtenHow to use Xbox mode on your Windows PC(21.09.2026 um 00:30 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

How to Deploy a Linux Virtual Machine in Microsoft Azure and Connect Using SSH

Reagiere als Erste:r — dein Feedback zählt!

Introduction

Linux Virtual Machines are widely used in cloud computing for hosting applications, managing servers, running development environments, and practicing cloud administration.

In this guide, we’ll deploy a Linux Virtual Machine in Microsoft Azure using the Azure Portal and securely connect to it using SSH authentication with a username and password.

By the end of this tutorial, you’ll know how to:

  • Deploy a Linux Virtual Machine in Azure
  • Configure SSH access
  • Connect securely using SSH
  • Understand the basics of Azure Linux Virtual Machines

Let’s build your first Linux cloud machine.

What is a Linux Virtual Machine?

A Linux Virtual Machine (VM) is a Linux-based computer running inside the cloud instead of on physical hardware.

With Azure Linux Virtual Machines, you can:

  • Host applications and web servers
  • Run development and testing environments
  • Practice Linux administration
  • Access your server remotely from anywhere
  • Learn cloud and infrastructure management

Think of it as renting a Linux server from Microsoft’s datacenter whenever you need one.

And today, we’re building one from scratch.

Scenario

A company requires a Linux-based cloud server for administration, testing, and application hosting.

The solution must allow administrators to securely connect remotely using SSH while maintaining proper networking and security configurations.

Prerequisites

Before we begin, ensure you have:

  • A Microsoft Azure account
  • An active Azure subscription
  • A stable internet connection
  • A terminal application
    • Windows Terminal / PowerShell
    • macOS Terminal
    • Linux Terminal

Now come with me, let’s build your first Linux cloud machine.

Create the Linux Virtual Machine.

  1. Use the top search box to search for and select Virtual machines.
    search

  2. Click + Create, and then select in the drop-down virtual machine. Notice your other choices.
    create

  3. On the Basics tab, continue completing the configuration:

    • Subscription: Select the name of your Azure subscription sub
    • Resource group: Click Create new, give the resource group a name and click Ok RG
    • Virtual machine names: Select any name for your virtual machine. Linux
    • Region: Select a preferred region. Region
    • Availability options: Select No infrastructure redundancy required no az
    • Security type: Select Standard (review your other choices) standard
    • Image: Click on see all images, to have an overview and variety of images to choose from and select Ubuntu Server 24.04 LTS -x64 Gen2 ubuntu
    • Size: Choose Standard_B4as_v2 (use See all sizes to view the CPU and memory) Size Authentication type: Select Password. Password
    • Username: Give it a Username. For example "azureuser" username
    • Password: Select a Password you can remember and repeat the password in the confirm password tab below. passwordn
    • Public inbound ports: Choose Allow selected ports selected
    • Select inbound ports: Choose your desired allowed ports, please note that for a linux vm like the one we are creating by default SSH port 22 is selected, you can choose to add HTTP(80) and HTTPS(443) 22
  4. Navigate to the monitoring tab, and under boot diagnostics of the Diagnostics section, select disable. Leave others with their default values
    monitor

  5. Click Review + Create.
    Review

  6. After the validation passes, click Create.
    create

Increase the Idle Timeout on the Public IP address of your Virtual Machine.

  1. select Go to resource.
    go to

  2. From the Overview blade, ensure the virtual machine Status is Running, and the public IP address is visible under the Networking section and also on the Primary NIC public IP section.
    PIP

  3. Click on Public IP under the Networking section on the VM overview page
    click pip

  4. Set the Idle timeout bar in the configuration section to the maximum (30) and click apply
    timeout

Connect to the Linux VM Using SSH.

  1. On the Overview tab of the VM, in the top menu, select Connect and Connect in the drop-down.
    connect

  2. In the Native SSH page, select the Check access button to make sure port 22 is available.
    available

  3. Make a note of the public IP address and copy the SSH command. You will need this to connect to the virtual machine. Close the Native SSH page.
    copy

  4. Open a CMD/Terminal window and paste the SSH command you copied from the azure portal.
    enter

  5. You'll be prompted with an Are you sure you want to continue connecting? Please type Yes and press enter.
    yes

  6. Please type in the password you created while deploying the VM. Please note that in Linux, when you are entering the password the screen is still going to be blank, just continue typing the right password and hit enter and you'll successfully connect to the vm.
    password

  7. Change to root user: type this command to change to root user "sudo su."
    root

  8. Fetch the list of available OS updates and install updates with "sudo apt update". When prompted, type yes to continue. Each command must complete successfully.
    OS

Install the Nginx web service and test to ensure it is working

  1. Install the Nginx service with "sudo apt install nginx". When prompted indicate Y to continue the install.
    nginx

  2. Start the Nginx service with "sudo systemctl start nginx".
    start

  3. Configure Nginx to launch on boot. This is optional but good practice with "sudo systemctl enable nginx".
    boot

  4. Check to ensure the Nginx service is active (running) with "service nginx status"
    activen

  5. Launch the Nginx welcome page. Open the Nginx default page in a browser, http://public_ip_address.Be sure to substitute your virtual machine public IP address.
    welcome

Conclusion

Congratulations on successfully deploying and connecting to your first Linux Virtual Machine in Microsoft Azure.

In this lab, we explored the core concepts behind Azure Linux Virtual Machines, including compute provisioning, networking, authentication, and secure remote access using SSH.

Linux Virtual Machines provide a flexible and scalable way to host applications, practice Linux administration, and build cloud infrastructure without relying on physical hardware.

Some key takeaways from this lab include:

  • Azure Linux Virtual Machines provide on-demand cloud computing resources
  • SSH enables secure remote administration of Linux servers
  • Azure networking and NSGs help control inbound SSH access
  • Linux VMs are commonly used for hosting, administration, automation, and development workloads
  • Cloud infrastructure can be deployed within minutes using the Azure Portal

By completing this exercise, you have taken another important step in building practical cloud engineering and Linux administration skills with Microsoft Azure.

See you in the next article.

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten How to Deploy a Linux Virtual Machine in Microsoft Azure and Connect Using SSH

Thematisch verwandte Begriffe: Deploy, Linux, Virtual, Machine · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-94084 | Suricata before 8.0.7 has an Http2ThreadMultiBuf use-after-free when a t…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick