惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
Docker
大猫的无限游戏
大猫的无限游戏
Jina AI
Jina AI
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 司徒正美
美团技术团队
雷峰网
雷峰网
阮一峰的网络日志
阮一峰的网络日志
WordPress大学
WordPress大学
T
Tailwind CSS Blog
U
Unit 42
C
Check Point Blog
S
SegmentFault 最新的问题
Martin Fowler
Martin Fowler
Stack Overflow Blog
Stack Overflow Blog
云风的 BLOG
云风的 BLOG
L
LangChain Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
腾讯CDC
罗磊的独立博客
小众软件
小众软件
Recent Announcements
Recent Announcements
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
DataBreaches.Net

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How to Deploy a Linux Virtual Machine in Microsoft Azure ...
forsyth famo · 2026-05-16 · via DEV Community

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:

  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.