{"id":3506,"date":"2025-11-03T15:50:04","date_gmt":"2025-11-03T12:50:04","guid":{"rendered":"https:\/\/gameteam.io\/blog\/minecraft-server-on-aws-ec2-instance-setup\/"},"modified":"2025-11-03T15:50:04","modified_gmt":"2025-11-03T12:50:04","slug":"minecraft-server-on-aws-ec2-instance-setup","status":"publish","type":"post","link":"https:\/\/gameteam.io\/blog\/minecraft-server-on-aws-ec2-instance-setup\/","title":{"rendered":"Minecraft Server on AWS: EC2 Instance Setup"},"content":{"rendered":"<p>Setting up a Minecraft server on AWS EC2 isn\u2019t rocket science, but it\u2019s definitely more involved than clicking \u201cStart Server\u201d on a hosting platform. You\u2019ll need to configure security groups, manage instance types, handle port forwarding, and keep an eye on those AWS bills that can spiral fast if you\u2019re not careful.<\/p>\n<h2 id=\"quick-answer-what-you-need-to-know-about-minecraft-server-on-aws-ec2\">Quick Answer: What You Need to Know About Minecraft Server on AWS EC2<\/h2>\n<p>Running a Minecraft server on AWS EC2 requires launching a virtual machine instance (typically t2.medium or better), installing Java, configuring security groups to allow port 25565, and managing the server software. While AWS offers flexibility and scalability, you\u2019ll handle all server maintenance, backups, and optimization yourself. Expect monthly costs between $15-50 depending on instance size and data transfer.<\/p>\n<h2 id=\"why-choose-aws-ec2-for-your-minecraft-server\">Why Choose AWS EC2 for Your Minecraft Server<\/h2>\n<p>AWS EC2 gives you complete control over your server environment. You pick the exact CPU, RAM, and storage configuration you need. Want to upgrade from 4GB to 8GB RAM during a weekend gaming marathon? You can do that in minutes.<\/p>\n<p>The real advantage is <strong>geographic flexibility<\/strong>. AWS has data centers worldwide, so you can host your server in the region closest to your players. A server in Sydney for Australian players will always outperform one hosted in Virginia.<\/p>\n<p>But here\u2019s the catch: you\u2019re the system administrator. Every update, every backup, every security patch falls on you. If your server crashes at 2 AM, you\u2019re the one troubleshooting it.<\/p>\n<h2 id=\"choosing-the-right-ec2-instance-type\">Choosing the Right EC2 Instance Type<\/h2>\n<p>Instance selection makes or breaks your Minecraft server performance. Here\u2019s what actually works in practice:<\/p>\n<h3 id=\"instance-recommendations-by-player-count\">Instance Recommendations by Player Count<\/h3>\n<table>\n<tr>\n<th>Players<\/th>\n<th>Instance Type<\/th>\n<th>RAM<\/th>\n<th>Approximate Cost\/Month<\/th>\n<\/tr>\n<tr>\n<td>1-5<\/td>\n<td>t2.small<\/td>\n<td>2GB<\/td>\n<td>$17<\/td>\n<\/tr>\n<tr>\n<td>5-10<\/td>\n<td>t2.medium<\/td>\n<td>4GB<\/td>\n<td>$34<\/td>\n<\/tr>\n<tr>\n<td>10-20<\/td>\n<td>t2.large<\/td>\n<td>8GB<\/td>\n<td>$68<\/td>\n<\/tr>\n<tr>\n<td>20+<\/td>\n<td>m5.large or better<\/td>\n<td>8GB+<\/td>\n<td>$70+<\/td>\n<\/tr>\n<\/table>\n<p>The t2 family uses <strong>burstable performance<\/strong>, which sounds great until you realize your CPU credits drain during peak hours. For servers running 24\/7 with consistent player activity, m5 instances provide better sustained performance.<\/p>\n<h3 id=\"storage-configuration\">Storage Configuration<\/h3>\n<p>Use EBS SSD storage (gp3) for your Minecraft world files. Chunk loading hammers disk I\/O, and traditional magnetic storage creates noticeable lag. Allocate at least 10GB for the base server, plus 5-10GB per active world.<\/p>\n<h2 id=\"step-by-step-ec2-instance-setup\">Step-by-Step EC2 Instance Setup<\/h2>\n<h3 id=\"launch-your-instance\">Launch Your Instance<\/h3>\n<p>Log into the AWS Management Console and navigate to EC2. Click \u201cLaunch Instance\u201d and select <strong>Ubuntu Server 22.04 LTS<\/strong> as your operating system. While Amazon Linux works fine, Ubuntu has better community support for Minecraft-specific troubleshooting.<\/p>\n<p>Select your instance type based on the table above. For testing, t2.medium works well and keeps costs reasonable.<\/p>\n<h3 id=\"configure-security-groups\">Configure Security Groups<\/h3>\n<p>Security groups act as your firewall. You need two specific rules:<\/p>\n<ul>\n<li><strong>SSH (Port 22)<\/strong>: Allows you to connect and manage the server. Restrict this to your IP address only.<\/li>\n<li><strong>Custom TCP (Port 25565)<\/strong>: The default Minecraft server port. Set source to 0.0.0.0\/0 to allow players worldwide to connect.<\/li>\n<\/ul>\n<p>Create a new key pair when prompted and download it immediately. You\u2019ll need this .pem file to access your server via SSH. Lose it, and you\u2019re locked out permanently.<\/p>\n<h3 id=\"allocate-an-elastic-ip\">Allocate an Elastic IP<\/h3>\n<p>By default, EC2 assigns a new IP address every time you restart your instance. That\u2019s a nightmare for Minecraft servers since players need a consistent address.<\/p>\n<p>Navigate to \u201cElastic IPs\u201d in the EC2 dashboard, allocate a new address, and associate it with your instance. This IP stays with your server even after restarts. Just remember: AWS charges for unattached Elastic IPs, so release it if you shut down the server permanently.<\/p>\n<h2 id=\"installing-and-configuring-the-minecraft-server\">Installing and Configuring the Minecraft Server<\/h2>\n<h3 id=\"connect-via-ssh\">Connect Via SSH<\/h3>\n<p>Open your terminal (or PuTTY on Windows) and connect to your instance:<\/p>\n<p><code>ssh -i your-key.pem ubuntu@your-elastic-ip<\/code><\/p>\n<h3 id=\"install-java-and-required-packages\">Install Java and Required Packages<\/h3>\n<p>Minecraft Java Edition requires, well, Java. Install OpenJDK 17 for the best compatibility with recent Minecraft versions:<\/p>\n<p><code>sudo apt update<br \/>\nsudo apt install openjdk-17-jre-headless screen wget -y<\/code><\/p>\n<p>The <strong>screen<\/strong> package lets your server run in the background even after you disconnect from SSH.<\/p>\n<h3 id=\"download-minecraft-server-software\">Download Minecraft Server Software<\/h3>\n<p>Create a dedicated directory and download the official server jar from Mojang:<\/p>\n<p><code>mkdir minecraft-server<br \/>\ncd minecraft-server<br \/>\nwget https:\/\/launcher.mojang.com\/v1\/objects\/[version-hash]\/server.jar<\/code><\/p>\n<p>Check the official Minecraft website for the current version hash. First-time setup requires accepting the EULA by editing eula.txt and changing \u201cfalse\u201d to \u201ctrue\u201d.<\/p>\n<h3 id=\"optimize-server-performance\">Optimize Server Performance<\/h3>\n<p>Launch the server with proper JVM flags for better garbage collection:<\/p>\n<p><code>java -Xmx3G -Xms3G -XX:+UseG1GC -jar server.jar nogui<\/code><\/p>\n<p>Adjust the -Xmx and -Xms values based on your instance RAM. Leave 1GB for the operating system, so a 4GB instance should use -Xmx3G.<\/p>\n<h2 id=\"common-problems-and-real-solutions\">Common Problems and Real Solutions<\/h2>\n<h3 id=\"connection-timeouts\">Connection Timeouts<\/h3>\n<p>If players can\u2019t connect, 99% of the time it\u2019s security group misconfiguration. Double-check that port 25565 is open with source 0.0.0.0\/0. Also verify your <strong>server.properties<\/strong> file has the correct server-ip setting (usually leave it blank).<\/p>\n<h3 id=\"lag-despite-good-hardware\">Lag Despite Good Hardware<\/h3>\n<p>AWS places instances in shared network environments. If you\u2019re experiencing random lag spikes, your instance might be suffering from \u201cnoisy neighbor\u201d syndrome where other VMs on the same physical hardware consume resources.<\/p>\n<p>Switch to a different instance type or request a different availability zone. The m5 family generally provides more consistent performance than t2.<\/p>\n<h3 id=\"unexpected-aws-bills\">Unexpected AWS Bills<\/h3>\n<p>Data transfer costs catch people off guard. AWS charges for outbound data transfer after the first 100GB per month. A busy Minecraft server with 20 active players can easily push 200-300GB monthly, adding $15-25 to your bill.<\/p>\n<p>Set up billing alerts in the AWS console to notify you when charges exceed expected amounts.<\/p>\n<h2 id=\"backup-strategy-that-actually-works\">Backup Strategy That Actually Works<\/h2>\n<p>Take regular snapshots of your EBS volume through the AWS console. Schedule these during off-peak hours since snapshots can cause brief performance dips. Keep at least 3 rolling backups: daily, weekly, and monthly.<\/p>\n<p>For world files specifically, use a cron job to copy the world folder to S3 storage every few hours. This protects against both instance failure and accidental in-game destruction.<\/p>\n<h2 id=\"is-aws-ec2-worth-it\">Is AWS EC2 Worth It?<\/h2>\n<p>Here\u2019s the honest truth: AWS EC2 makes sense if you need absolute control, enjoy system administration, or have specific compliance requirements. For most casual Minecraft servers, the complexity and hidden costs outweigh the benefits.<\/p>\n<p><strong>Want to skip the technical headaches?<\/strong> <a href=\"https:\/\/gameteam.io\">GameTeam.io offers managed Minecraft hosting starting at $1\/GB with 20% off for new users<\/a>. You get automated backups, one-click modpack installation, and 24\/7 support without managing EC2 instances, security groups, or surprise AWS bills.<\/p>\n<h2 id=\"frequently-asked-questions\">Frequently Asked Questions<\/h2>\n<h3 id=\"can-i-run-a-modded-minecraft-server-on-ec2\">Can I run a modded Minecraft server on EC2?<\/h3>\n<p>Absolutely. Install Forge or Fabric the same way you would on any Linux server. Just increase your instance RAM allocation\u2014modpacks like All The Mods or FTB require at least 6-8GB to run smoothly.<\/p>\n<h3 id=\"how-do-i-stop-my-server-without-losing-data\">How do I stop my server without losing data?<\/h3>\n<p>Use the \u201cstop\u201d command in the server console, wait for it to save all chunks, then stop the EC2 instance through the AWS console. Never force-stop an instance while the server is running\u2014you risk world corruption.<\/p>\n<h3 id=\"whats-the-cheapest-way-to-run-a-minecraft-server-on-aws\">What\u2019s the cheapest way to run a Minecraft server on AWS?<\/h3>\n<p>Use a t2.small instance with reserved pricing if you\u2019re committed for 1-3 years. This drops the monthly cost to around $12. However, performance will be limited to 3-5 players maximum. Spot instances are even cheaper but can be terminated with 2 minutes notice\u2014not ideal for game servers.<\/p>\n<h3 id=\"can-multiple-people-manage-the-same-ec2-minecraft-server\">Can multiple people manage the same EC2 Minecraft server?<\/h3>\n<p>Yes, through AWS IAM roles or by sharing the SSH key file (less secure). For proper multi-admin setups, create separate IAM users with EC2 access permissions and generate individual key pairs.<\/p>\n<h3 id=\"how-do-i-add-plugins-like-essentialsx-or-worldedit\">How do I add plugins like EssentialsX or WorldEdit?<\/h3>\n<p>Switch from vanilla server software to Paper or Spigot. Download the Paper jar instead of the official server.jar, then drop plugin files into the \/plugins directory. Restart the server, and plugins load automatically.<\/p>\n<p>Running a Minecraft server on AWS EC2 teaches you valuable cloud computing skills, but it\u2019s definitely the hard way to host a game server. Weigh the learning experience against your actual goal\u2014if you just want to play Minecraft with friends, managed hosting eliminates 90% of the hassle.<\/p>\n","protected":false},"excerpt":{"rendered":"Setting up a Minecraft server on AWS EC2 isn\u2019t rocket science, but it\u2019s definitely more involved than clicking&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-3506","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.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Minecraft Server on AWS: EC2 Instance 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-aws-ec2-instance-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 AWS: EC2 Instance Setup - GameTeam - Blog\" \/>\n<meta property=\"og:description\" content=\"Setting up a Minecraft server on AWS EC2 isn\u2019t rocket science, but it\u2019s definitely more involved than clicking&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/gameteam.io\/blog\/minecraft-server-on-aws-ec2-instance-setup\/\" \/>\n<meta property=\"og:site_name\" content=\"GameTeam - Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-03T12:50:04+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-aws-ec2-instance-setup\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-aws-ec2-instance-setup\\\/\"},\"author\":{\"name\":\"gameteam\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/#\\\/schema\\\/person\\\/0cc694e709c1805f635ede3a5e1dbf83\"},\"headline\":\"Minecraft Server on AWS: EC2 Instance Setup\",\"datePublished\":\"2025-11-03T12:50:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-aws-ec2-instance-setup\\\/\"},\"wordCount\":1315,\"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-aws-ec2-instance-setup\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-aws-ec2-instance-setup\\\/\",\"url\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-aws-ec2-instance-setup\\\/\",\"name\":\"Minecraft Server on AWS: EC2 Instance Setup - GameTeam - Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/#website\"},\"datePublished\":\"2025-11-03T12:50:04+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-aws-ec2-instance-setup\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-aws-ec2-instance-setup\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-aws-ec2-instance-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 AWS: EC2 Instance 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 AWS: EC2 Instance 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-aws-ec2-instance-setup\/","og_locale":"en_US","og_type":"article","og_title":"Minecraft Server on AWS: EC2 Instance Setup - GameTeam - Blog","og_description":"Setting up a Minecraft server on AWS EC2 isn\u2019t rocket science, but it\u2019s definitely more involved than clicking&hellip;","og_url":"https:\/\/gameteam.io\/blog\/minecraft-server-on-aws-ec2-instance-setup\/","og_site_name":"GameTeam - Blog","article_published_time":"2025-11-03T12:50:04+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-aws-ec2-instance-setup\/#article","isPartOf":{"@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-aws-ec2-instance-setup\/"},"author":{"name":"gameteam","@id":"https:\/\/gameteam.io\/blog\/#\/schema\/person\/0cc694e709c1805f635ede3a5e1dbf83"},"headline":"Minecraft Server on AWS: EC2 Instance Setup","datePublished":"2025-11-03T12:50:04+00:00","mainEntityOfPage":{"@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-aws-ec2-instance-setup\/"},"wordCount":1315,"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-aws-ec2-instance-setup\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-aws-ec2-instance-setup\/","url":"https:\/\/gameteam.io\/blog\/minecraft-server-on-aws-ec2-instance-setup\/","name":"Minecraft Server on AWS: EC2 Instance Setup - GameTeam - Blog","isPartOf":{"@id":"https:\/\/gameteam.io\/blog\/#website"},"datePublished":"2025-11-03T12:50:04+00:00","breadcrumb":{"@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-aws-ec2-instance-setup\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/gameteam.io\/blog\/minecraft-server-on-aws-ec2-instance-setup\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-aws-ec2-instance-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 AWS: EC2 Instance 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\/3506","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=3506"}],"version-history":[{"count":0,"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/posts\/3506\/revisions"}],"wp:attachment":[{"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/media?parent=3506"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/categories?post=3506"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/tags?post=3506"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}