{"id":3508,"date":"2025-11-03T21:51:25","date_gmt":"2025-11-03T18:51:25","guid":{"rendered":"https:\/\/gameteam.io\/blog\/minecraft-server-on-azure-virtual-machine-setup\/"},"modified":"2025-11-03T21:51:25","modified_gmt":"2025-11-03T18:51:25","slug":"minecraft-server-on-azure-virtual-machine-setup","status":"publish","type":"post","link":"https:\/\/gameteam.io\/blog\/minecraft-server-on-azure-virtual-machine-setup\/","title":{"rendered":"Minecraft Server on Azure: Virtual Machine Setup"},"content":{"rendered":"<h2 id=\"why-azure-vms-make-sense-for-minecraft-servers\">Why Azure VMs Make Sense for Minecraft Servers<\/h2>\n<p>Setting up a Minecraft server on Azure gives you enterprise-grade infrastructure without the enterprise-grade headaches. You get reliable uptime, scalable resources, and global data center locations that keep latency low for players worldwide. But here\u2019s the catch: Azure\u2019s flexibility comes with complexity, and if you\u2019re not careful, you\u2019ll either overpay for resources or end up with a laggy mess.<\/p>\n<p><strong>Quick Answer:<\/strong> A Minecraft server on Azure requires a virtual machine with at least 2GB RAM for vanilla gameplay, proper port configuration (25565), and Java installation. Azure B-series VMs work well for small servers, while compute-optimized F-series handles larger player counts. Expect costs between $15-100 monthly depending on specs and uptime.<\/p>\n<h2 id=\"choosing-the-right-azure-vm-size\">Choosing the Right Azure VM Size<\/h2>\n<p>Not all Azure virtual machines are created equal for Minecraft hosting. The game is CPU-intensive and memory-hungry, especially with mods or multiple players.<\/p>\n<h3 id=\"vm-series-that-actually-work\">VM Series That Actually Work<\/h3>\n<p><strong>B-series (Burstable)<\/strong> \u2013 Perfect for small servers with 2-10 players. These VMs accumulate CPU credits during idle periods and burst when needed. A B2s instance (2 vCPUs, 4GB RAM) runs about $30\/month and handles vanilla Minecraft smoothly.<\/p>\n<p><strong>D-series (General Purpose)<\/strong> \u2013 The middle ground for 10-30 players. D2s_v3 instances offer consistent performance with balanced CPU and memory ratios. You\u2019re looking at $70-90 monthly here.<\/p>\n<p><strong>F-series (Compute Optimized)<\/strong> \u2013 When you need raw processing power for modded servers or large player bases. Higher CPU-to-memory ratio means better tick rates. F4s_v2 starts around $120\/month but keeps 50+ players running without stuttering.<\/p>\n<h3 id=\"storage-configuration\">Storage Configuration<\/h3>\n<p>Standard HDD storage kills Minecraft performance. Period. Your world files need fast read\/write speeds, especially during chunk generation and autosaves. Premium SSD storage costs more but prevents the dreaded \u201clag spike during exploration\u201d problem. Allocate at least 20GB for the server, more if you\u2019re running modpacks.<\/p>\n<h2 id=\"step-by-step-azure-vm-setup\">Step-by-Step Azure VM Setup<\/h2>\n<p>Here\u2019s the actual process without the Azure documentation bloat:<\/p>\n<h3 id=\"creating-your-virtual-machine\">Creating Your Virtual Machine<\/h3>\n<ol>\n<li><strong>Log into Azure Portal<\/strong> and click \u201cCreate a resource\u201d > \u201cVirtual Machine\u201d<\/li>\n<li><strong>Select your subscription<\/strong> and create a new resource group (name it something memorable like \u201cminecraft-server\u201d)<\/li>\n<li><strong>Choose Ubuntu Server 20.04 LTS<\/strong> as your operating system \u2013 it\u2019s stable, well-documented, and free<\/li>\n<li><strong>Pick your VM size<\/strong> based on player count (start with B2s for testing)<\/li>\n<li><strong>Set authentication<\/strong> to SSH public key \u2013 more secure than passwords<\/li>\n<li><strong>Configure networking<\/strong> to allow inbound port 25565 (Minecraft\u2019s default port)<\/li>\n<\/ol>\n<h3 id=\"network-security-group-rules\">Network Security Group Rules<\/h3>\n<p>Azure blocks everything by default. You need to explicitly open ports:<\/p>\n<ul>\n<li>Port 25565 (TCP) for Minecraft gameplay<\/li>\n<li>Port 22 (TCP) for SSH access (restrict to your IP address)<\/li>\n<li>Port 25575 (TCP) if you want RCON remote console access<\/li>\n<\/ul>\n<p>Don\u2019t open port 22 to the entire internet unless you enjoy watching bots hammer your server with login attempts.<\/p>\n<h2 id=\"installing-and-configuring-minecraft-server\">Installing and Configuring Minecraft Server<\/h2>\n<p>Once your VM is running, SSH into it and get Java installed:<\/p>\n<h3 id=\"java-installation\">Java Installation<\/h3>\n<p>Minecraft 1.17+ requires Java 17 or newer. Run these commands:<\/p>\n<ul>\n<li><code>sudo apt update<\/code><\/li>\n<li><code>sudo apt install openjdk-17-jre-headless -y<\/code><\/li>\n<li><code>java -version<\/code> to verify installation<\/li>\n<\/ul>\n<h3 id=\"server-files-setup\">Server Files Setup<\/h3>\n<p>Create a dedicated directory and download the server JAR from Mojang\u2019s official website. Don\u2019t grab random JARs from sketchy forums \u2013 that\u2019s how you get backdoored.<\/p>\n<p>Run the server once to generate configuration files, accept the EULA, then configure <code>server.properties<\/code> with your preferred settings. Key parameters to adjust:<\/p>\n<ul>\n<li><strong>max-players<\/strong> \u2013 Match this to your VM\u2019s capabilities<\/li>\n<li><strong>view-distance<\/strong> \u2013 Lower values (6-8) reduce server load significantly<\/li>\n<li><strong>spawn-protection<\/strong> \u2013 Set to 0 unless you need it<\/li>\n<li><strong>enable-command-block<\/strong> \u2013 Disable if you\u2019re not using them<\/li>\n<\/ul>\n<h3 id=\"memory-allocation\">Memory Allocation<\/h3>\n<p>The default Java memory settings are terrible for Minecraft. Launch your server with explicit heap sizes:<\/p>\n<p><code>java -Xms2G -Xmx3G -jar server.jar nogui<\/code><\/p>\n<p>The -Xms flag sets initial memory, -Xmx sets maximum. Leave 1GB free for the operating system \u2013 don\u2019t allocate all 4GB of a 4GB VM to Minecraft.<\/p>\n<h2 id=\"performance-optimization-and-cost-management\">Performance Optimization and Cost Management<\/h2>\n<p>Running 24\/7 on Azure gets expensive fast. Here\u2019s how to keep costs reasonable:<\/p>\n<h3 id=\"auto-shutdown-scheduling\">Auto-Shutdown Scheduling<\/h3>\n<p>Azure\u2019s auto-shutdown feature stops your VM during off-hours. If your players only connect evenings and weekends, why pay for idle time? Configure this under VM settings to cut costs by 50-70%.<\/p>\n<h3 id=\"reserved-instances\">Reserved Instances<\/h3>\n<p>Committing to 1-year or 3-year terms saves 40-60% compared to pay-as-you-go pricing. Only worth it if you\u2019re serious about keeping the server running long-term.<\/p>\n<h3 id=\"monitoring-and-alerts\">Monitoring and Alerts<\/h3>\n<p>Set up Azure Monitor to track CPU usage, memory consumption, and disk I\/O. Create alerts when resources hit 80% so you can upgrade before players experience lag. The Azure portal makes this straightforward under the Monitoring section.<\/p>\n<p>Want to skip the Azure complexity entirely? <strong>GameTeam.io offers managed Minecraft hosting from $1\/GB with 20% off for new customers<\/strong> \u2013 no VM configuration required.<\/p>\n<h2 id=\"common-problems-and-solutions\">Common Problems and Solutions<\/h2>\n<h3 id=\"connection-timeouts\">Connection Timeouts<\/h3>\n<p>Players can\u2019t connect? 90% of the time it\u2019s firewall rules. Verify your Network Security Group allows port 25565 from all sources (0.0.0.0\/0). Check your VM\u2019s internal firewall with <code>sudo ufw status<\/code> and allow the port if needed.<\/p>\n<h3 id=\"server-crashes-on-startup\">Server Crashes on Startup<\/h3>\n<p>Usually means insufficient memory allocation or Java version mismatch. Check your launch parameters and verify you\u2019re running compatible Java for your Minecraft version. Logs in the server directory tell you exactly what failed.<\/p>\n<h3 id=\"terrible-performance-despite-good-specs\">Terrible Performance Despite Good Specs<\/h3>\n<p>Check your disk type first. If you\u2019re on Standard HDD, that\u2019s your bottleneck. Migrate to Premium SSD storage. Second culprit is view-distance set too high \u2013 reduce it to 8 or lower. Third issue is too many entities (mobs, items) \u2013 install a plugin to limit spawns.<\/p>\n<h3 id=\"unexpected-azure-bills\">Unexpected Azure Bills<\/h3>\n<p>Bandwidth costs sneak up on players downloading chunks. Azure charges for outbound data transfer after the first 100GB monthly. Monitor your bandwidth usage and consider setting spending alerts in Azure Cost Management.<\/p>\n<h2 id=\"security-hardening\">Security Hardening<\/h2>\n<p>A public Minecraft server attracts attention \u2013 not all of it friendly. Basic security measures:<\/p>\n<ul>\n<li><strong>Change SSH port<\/strong> from default 22 to something random<\/li>\n<li><strong>Disable root login<\/strong> via SSH configuration<\/li>\n<li><strong>Install fail2ban<\/strong> to block brute force attempts<\/li>\n<li><strong>Keep server software updated<\/strong> \u2013 exploits get patched regularly<\/li>\n<li><strong>Use whitelist mode<\/strong> if running a private server<\/li>\n<li><strong>Regular backups<\/strong> to Azure Blob Storage (automate with cron jobs)<\/li>\n<\/ul>\n<p>DDoS attacks are rare for small servers but devastating when they happen. Azure\u2019s DDoS Protection Standard costs extra but might be worth it for popular servers.<\/p>\n<h2 id=\"frequently-asked-questions\">Frequently Asked Questions<\/h2>\n<h3 id=\"how-much-does-running-a-minecraft-server-on-azure-actually-cost\">How much does running a Minecraft server on Azure actually cost?<\/h3>\n<p>Expect $15-30 monthly for small servers (B-series), $50-90 for medium (D-series), and $100+ for large modded servers (F-series). Add storage costs ($5-15) and bandwidth overages. Use Azure\u2019s pricing calculator for exact estimates based on your region and usage.<\/p>\n<h3 id=\"can-i-run-multiple-minecraft-servers-on-one-azure-vm\">Can I run multiple Minecraft servers on one Azure VM?<\/h3>\n<p>Yes, but each needs a unique port. Run one on 25565, another on 25566, etc. Make sure your VM has enough RAM \u2013 add 2GB per server minimum. This works well for test servers or different game modes on the same instance.<\/p>\n<h3 id=\"whats-better-for-minecraft-azure-aws-or-dedicated-hosting\">What\u2019s better for Minecraft: Azure, AWS, or dedicated hosting?<\/h3>\n<p>Azure and AWS offer similar performance and pricing \u2013 choose based on which platform you\u2019re already familiar with. Dedicated Minecraft hosts like GameTeam.io provide optimized configurations and support specifically for game servers, often at lower costs without the infrastructure management overhead.<\/p>\n<h3 id=\"how-do-i-migrate-an-existing-minecraft-world-to-azure\">How do I migrate an existing Minecraft world to Azure?<\/h3>\n<p>Use SCP or SFTP to transfer your world folder to the Azure VM. Stop your old server, copy the entire server directory, upload to Azure, and restart. Your world data, player inventories, and configurations transfer seamlessly. Just verify file permissions after upload.<\/p>\n<h3 id=\"should-i-use-windows-or-linux-for-my-azure-minecraft-server\">Should I use Windows or Linux for my Azure Minecraft server?<\/h3>\n<p>Linux (Ubuntu) costs less, uses fewer resources, and performs better for Minecraft servers. Windows Server licensing adds $13-40 monthly to your bill for no real benefit. Stick with Linux unless you specifically need Windows for certain plugins.<\/p>\n<h2 id=\"final-thoughts\">Final Thoughts<\/h2>\n<p>Azure VMs give you complete control over your Minecraft server environment, but that control requires technical knowledge and ongoing management. You\u2019ll spend time on updates, backups, security, and troubleshooting \u2013 time you could spend actually playing. For hobbyists and learning purposes, setting up Azure infrastructure teaches valuable cloud skills. For players who just want a reliable server without the hassle, managed hosting services handle the complexity while you focus on building.<\/p>\n","protected":false},"excerpt":{"rendered":"Why Azure VMs Make Sense for Minecraft Servers Setting up a Minecraft server on Azure gives you enterprise-grade&hellip;\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4],"tags":[],"class_list":{"0":"post-3508","1":"post","2":"type-post","3":"status-publish","4":"format-standard","6":"category-minecraft-tutorials","7":"vision-entry","8":"vision-video-wrap"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Minecraft Server on Azure: Virtual Machine Setup - GameTeam - Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/gameteam.io\/blog\/minecraft-server-on-azure-virtual-machine-setup\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Minecraft Server on Azure: Virtual Machine Setup - GameTeam - Blog\" \/>\n<meta property=\"og:description\" content=\"Why Azure VMs Make Sense for Minecraft Servers Setting up a Minecraft server on Azure gives you enterprise-grade&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/gameteam.io\/blog\/minecraft-server-on-azure-virtual-machine-setup\/\" \/>\n<meta property=\"og:site_name\" content=\"GameTeam - Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-03T18:51:25+00:00\" \/>\n<meta name=\"author\" content=\"gameteam\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"gameteam\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-azure-virtual-machine-setup\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-azure-virtual-machine-setup\\\/\"},\"author\":{\"name\":\"gameteam\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/#\\\/schema\\\/person\\\/0cc694e709c1805f635ede3a5e1dbf83\"},\"headline\":\"Minecraft Server on Azure: Virtual Machine Setup\",\"datePublished\":\"2025-11-03T18:51:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-azure-virtual-machine-setup\\\/\"},\"wordCount\":1363,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/#organization\"},\"articleSection\":[\"Minecraft Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-azure-virtual-machine-setup\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-azure-virtual-machine-setup\\\/\",\"url\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-azure-virtual-machine-setup\\\/\",\"name\":\"Minecraft Server on Azure: Virtual Machine Setup - GameTeam - Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/#website\"},\"datePublished\":\"2025-11-03T18:51:25+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-azure-virtual-machine-setup\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-azure-virtual-machine-setup\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-azure-virtual-machine-setup\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Minecraft Tutorials\",\"item\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/category\\\/minecraft-tutorials\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Minecraft Server on Azure: Virtual Machine Setup\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/\",\"name\":\"GameTeam - Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/#organization\",\"name\":\"GameTeam - Blog\",\"url\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/gameteam.io\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/image_2023-11-04_031100865.png?fit=837%2C167&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/gameteam.io\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/image_2023-11-04_031100865.png?fit=837%2C167&ssl=1\",\"width\":837,\"height\":167,\"caption\":\"GameTeam - Blog\"},\"image\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/#\\\/schema\\\/person\\\/0cc694e709c1805f635ede3a5e1dbf83\",\"name\":\"gameteam\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/i0.wp.com\\\/gameteam.io\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/image_2023-11-17_210836342.png?resize=96%2C96&ssl=1\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/gameteam.io\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/image_2023-11-17_210836342.png?resize=96%2C96&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/gameteam.io\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/image_2023-11-17_210836342.png?resize=96%2C96&ssl=1\",\"caption\":\"gameteam\"},\"sameAs\":[\"https:\\\/\\\/gameteam.io\\\/blog\"],\"url\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/author\\\/gameteam\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Minecraft Server on Azure: Virtual Machine Setup - GameTeam - Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/gameteam.io\/blog\/minecraft-server-on-azure-virtual-machine-setup\/","og_locale":"en_US","og_type":"article","og_title":"Minecraft Server on Azure: Virtual Machine Setup - GameTeam - Blog","og_description":"Why Azure VMs Make Sense for Minecraft Servers Setting up a Minecraft server on Azure gives you enterprise-grade&hellip;","og_url":"https:\/\/gameteam.io\/blog\/minecraft-server-on-azure-virtual-machine-setup\/","og_site_name":"GameTeam - Blog","article_published_time":"2025-11-03T18:51:25+00:00","author":"gameteam","twitter_card":"summary_large_image","twitter_misc":{"Written by":"gameteam","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-azure-virtual-machine-setup\/#article","isPartOf":{"@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-azure-virtual-machine-setup\/"},"author":{"name":"gameteam","@id":"https:\/\/gameteam.io\/blog\/#\/schema\/person\/0cc694e709c1805f635ede3a5e1dbf83"},"headline":"Minecraft Server on Azure: Virtual Machine Setup","datePublished":"2025-11-03T18:51:25+00:00","mainEntityOfPage":{"@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-azure-virtual-machine-setup\/"},"wordCount":1363,"commentCount":0,"publisher":{"@id":"https:\/\/gameteam.io\/blog\/#organization"},"articleSection":["Minecraft Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/gameteam.io\/blog\/minecraft-server-on-azure-virtual-machine-setup\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-azure-virtual-machine-setup\/","url":"https:\/\/gameteam.io\/blog\/minecraft-server-on-azure-virtual-machine-setup\/","name":"Minecraft Server on Azure: Virtual Machine Setup - GameTeam - Blog","isPartOf":{"@id":"https:\/\/gameteam.io\/blog\/#website"},"datePublished":"2025-11-03T18:51:25+00:00","breadcrumb":{"@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-azure-virtual-machine-setup\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/gameteam.io\/blog\/minecraft-server-on-azure-virtual-machine-setup\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-azure-virtual-machine-setup\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/gameteam.io\/blog\/"},{"@type":"ListItem","position":2,"name":"Minecraft Tutorials","item":"https:\/\/gameteam.io\/blog\/category\/minecraft-tutorials\/"},{"@type":"ListItem","position":3,"name":"Minecraft Server on Azure: Virtual Machine Setup"}]},{"@type":"WebSite","@id":"https:\/\/gameteam.io\/blog\/#website","url":"https:\/\/gameteam.io\/blog\/","name":"GameTeam - Blog","description":"","publisher":{"@id":"https:\/\/gameteam.io\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/gameteam.io\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/gameteam.io\/blog\/#organization","name":"GameTeam - Blog","url":"https:\/\/gameteam.io\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/gameteam.io\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/i0.wp.com\/gameteam.io\/blog\/wp-content\/uploads\/2023\/11\/image_2023-11-04_031100865.png?fit=837%2C167&ssl=1","contentUrl":"https:\/\/i0.wp.com\/gameteam.io\/blog\/wp-content\/uploads\/2023\/11\/image_2023-11-04_031100865.png?fit=837%2C167&ssl=1","width":837,"height":167,"caption":"GameTeam - Blog"},"image":{"@id":"https:\/\/gameteam.io\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/gameteam.io\/blog\/#\/schema\/person\/0cc694e709c1805f635ede3a5e1dbf83","name":"gameteam","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/i0.wp.com\/gameteam.io\/blog\/wp-content\/uploads\/2023\/11\/image_2023-11-17_210836342.png?resize=96%2C96&ssl=1","url":"https:\/\/i0.wp.com\/gameteam.io\/blog\/wp-content\/uploads\/2023\/11\/image_2023-11-17_210836342.png?resize=96%2C96&ssl=1","contentUrl":"https:\/\/i0.wp.com\/gameteam.io\/blog\/wp-content\/uploads\/2023\/11\/image_2023-11-17_210836342.png?resize=96%2C96&ssl=1","caption":"gameteam"},"sameAs":["https:\/\/gameteam.io\/blog"],"url":"https:\/\/gameteam.io\/blog\/author\/gameteam\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/posts\/3508","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/comments?post=3508"}],"version-history":[{"count":0,"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/posts\/3508\/revisions"}],"wp:attachment":[{"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/media?parent=3508"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/categories?post=3508"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/tags?post=3508"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}