{"id":3510,"date":"2025-11-04T06:52:00","date_gmt":"2025-11-04T03:52:00","guid":{"rendered":"https:\/\/gameteam.io\/blog\/minecraft-server-on-oracle-cloud-free-tier-setup\/"},"modified":"2025-11-04T06:52:00","modified_gmt":"2025-11-04T03:52:00","slug":"minecraft-server-on-oracle-cloud-free-tier-setup","status":"publish","type":"post","link":"https:\/\/gameteam.io\/blog\/minecraft-server-on-oracle-cloud-free-tier-setup\/","title":{"rendered":"Minecraft Server on Oracle Cloud: Free Tier Setup"},"content":{"rendered":"<p>Oracle Cloud&#8217;s free tier gives you enough compute power to run a Minecraft server 24\/7 without spending a dime. It&#8217;s one of the most generous free offerings out there, but the setup process isn&#8217;t exactly straightforward if you&#8217;ve never touched a Linux terminal before.<\/p>\n<h2 id=\"what-you-get-with-oracle-cloud-free-tier\">What You Get with Oracle Cloud Free Tier<\/h2>\n<p>Oracle Cloud&#8217;s Always Free tier includes two AMD-based Compute VMs with 1\/8 OCPU and 1GB memory each, or you can combine them into a single ARM-based Ampere A1 instance with 4 OCPUs and 24GB RAM. For a Minecraft server, the ARM instance is what you want\u2014it&#8217;s powerful enough to handle 10-15 players comfortably with proper optimization.<\/p>\n<p><strong>Here&#8217;s the quick answer:<\/strong> Setting up a Minecraft server on Oracle Cloud Free Tier involves creating an Oracle Cloud account, launching an ARM-based compute instance with Ubuntu, configuring firewall rules, installing Java, downloading the Minecraft server software, and keeping it running with a service manager. The entire process takes about 30-45 minutes.<\/p>\n<h2 id=\"creating-your-oracle-cloud-instance\">Creating Your Oracle Cloud Instance<\/h2>\n<p>First, sign up for an Oracle Cloud account. You&#8217;ll need a credit card for verification, but Oracle won&#8217;t charge you for free tier resources. The verification process can take a few minutes to an hour.<\/p>\n<h3 id=\"launching-the-compute-instance\">Launching the Compute Instance<\/h3>\n<p>Once you&#8217;re in the Oracle Cloud console, navigate to Compute > Instances and click &#8220;Create Instance.&#8221; Here&#8217;s where most people make their first mistake\u2014they stick with the default x86 shape instead of switching to ARM.<\/p>\n<ul>\n<li>Click &#8220;Change Shape&#8221; and select &#8220;Ampere&#8221; under the VM.Standard.A1.Flex option<\/li>\n<li>Set OCPUs to 4 and memory to 24GB (this maxes out your free tier allocation)<\/li>\n<li>Choose Ubuntu 22.04 as your operating system image<\/li>\n<li>Download the SSH private key\u2014you&#8217;ll need this to access your server<\/li>\n<\/ul>\n<p>Under networking, make sure &#8220;Assign a public IPv4 address&#8221; is checked. Oracle assigns you a static IP automatically, which is perfect for a game server.<\/p>\n<h3 id=\"configuring-security-lists-and-firewall-rules\">Configuring Security Lists and Firewall Rules<\/h3>\n<p>Oracle Cloud uses two layers of network security: security lists (cloud-level) and iptables (instance-level). Both need configuration or players won&#8217;t be able to connect.<\/p>\n<p>In your instance details, click on the subnet name, then &#8220;Default Security List.&#8221; Add an ingress rule:<\/p>\n<ul>\n<li>Source CIDR: 0.0.0.0\/0<\/li>\n<li>IP Protocol: TCP<\/li>\n<li>Destination Port Range: 25565<\/li>\n<\/ul>\n<p>If you&#8217;re running a Bedrock server instead, use UDP protocol and port 19132.<\/p>\n<h2 id=\"installing-and-configuring-minecraft-server\">Installing and Configuring Minecraft Server<\/h2>\n<p>Connect to your instance using SSH. On Windows, use PowerShell or PuTTY. On Mac or Linux, open Terminal:<\/p>\n<p><code>ssh -i \/path\/to\/private-key ubuntu@your-instance-ip<\/code><\/p>\n<h3 id=\"setting-up-the-server-environment\">Setting Up the Server Environment<\/h3>\n<p>Ubuntu&#8217;s default firewall blocks the Minecraft port. Open it with these commands:<\/p>\n<p><code>sudo iptables -I INPUT 6 -m state --state NEW -p tcp --dport 25565 -j ACCEPT<\/code><\/p>\n<p><code>sudo netfilter-persistent save<\/code><\/p>\n<p>Install Java 17, which is the recommended version for Minecraft 1.18 and newer:<\/p>\n<p><code>sudo apt update<\/code><\/p>\n<p><code>sudo apt install openjdk-17-jre-headless screen -y<\/code><\/p>\n<h3 id=\"downloading-and-running-minecraft-server\">Downloading and Running Minecraft Server<\/h3>\n<p>Create a dedicated directory for your server files:<\/p>\n<p><code>mkdir minecraft-server && cd minecraft-server<\/code><\/p>\n<p>Download the official server jar from Minecraft.net. At the time of writing, version 1.20.4 is current:<\/p>\n<p><code>wget https:\/\/piston-data.mojang.com\/v1\/objects\/[version-hash]\/server.jar<\/code><\/p>\n<p>Run it once to generate the EULA file:<\/p>\n<p><code>java -Xmx20G -Xms20G -jar server.jar nogui<\/code><\/p>\n<p>Edit the EULA file to accept the terms:<\/p>\n<p><code>nano eula.txt<\/code><\/p>\n<p>Change <code>eula=false<\/code> to <code>eula=true<\/code>, then save with Ctrl+X, Y, Enter.<\/p>\n<h3 id=\"optimizing-server-performance\">Optimizing Server Performance<\/h3>\n<p>The default server.properties file needs tweaking for optimal performance on ARM architecture. Open it with <code>nano server.properties<\/code> and adjust these settings:<\/p>\n<ul>\n<li><strong>view-distance=8<\/strong> (lower than default to reduce CPU load)<\/li>\n<li><strong>simulation-distance=6<\/strong> (keeps mob processing manageable)<\/li>\n<li><strong>max-players=15<\/strong> (realistic limit for free tier specs)<\/li>\n<li><strong>network-compression-threshold=512<\/strong> (reduces bandwidth usage)<\/li>\n<\/ul>\n<p>For better performance, consider using Paper or Purpur server software instead of vanilla. These optimized server implementations reduce lag significantly without requiring client-side mods.<\/p>\n<h2 id=\"keeping-your-server-running-24-7\">Keeping Your Server Running 24\/7<\/h2>\n<p>Running the server directly means it stops when you disconnect from SSH. Use screen or create a systemd service for persistence.<\/p>\n<h3 id=\"using-screen-quick-method\">Using Screen (Quick Method)<\/h3>\n<p>Start a screen session:<\/p>\n<p><code>screen -S minecraft<\/code><\/p>\n<p>Launch your server with optimized flags:<\/p>\n<p><code>java -Xmx20G -Xms20G -XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200 -jar server.jar nogui<\/code><\/p>\n<p>Detach from screen with Ctrl+A, then D. Reattach anytime with <code>screen -r minecraft<\/code>.<\/p>\n<h3 id=\"creating-a-systemd-service-proper-method\">Creating a Systemd Service (Proper Method)<\/h3>\n<p>For automatic restarts after crashes or reboots, create a service file:<\/p>\n<p><code>sudo nano \/etc\/systemd\/system\/minecraft.service<\/code><\/p>\n<p>Paste this configuration:<\/p>\n<pre>\n[Unit]\nDescription=Minecraft Server\nAfter=network.target\n\n[Service]\nUser=ubuntu\nWorkingDirectory=\/home\/ubuntu\/minecraft-server\nExecStart=\/usr\/bin\/java -Xmx20G -Xms20G -XX:+UseG1GC -jar server.jar nogui\nRestart=always\n\n[Install]\nWantedBy=multi-user.target\n<\/pre>\n<p>Enable and start the service:<\/p>\n<p><code>sudo systemctl enable minecraft<\/code><\/p>\n<p><code>sudo systemctl start minecraft<\/code><\/p>\n<h2 id=\"common-issues-and-solutions\">Common Issues and Solutions<\/h2>\n<h3 id=\"players-cant-connect\">Players Can&#8217;t Connect<\/h3>\n<p>This is almost always a firewall issue. Double-check both Oracle Cloud security lists and instance-level iptables rules. Run <code>sudo iptables -L<\/code> to verify the port 25565 rule exists. Also confirm your server is actually listening with <code>sudo netstat -tulpn | grep 25565<\/code>.<\/p>\n<h3 id=\"server-runs-out-of-memory\">Server Runs Out of Memory<\/h3>\n<p>The 24GB allocation is generous, but poorly optimized worlds or too many plugins can cause issues. Monitor memory usage with <code>htop<\/code>. If you&#8217;re consistently hitting limits, reduce view-distance further or switch to a lightweight server software like Paper.<\/p>\n<h3 id=\"oracle-reclaims-your-instance\">Oracle Reclaims Your Instance<\/h3>\n<p>Oracle occasionally reclaims inactive free tier instances. Keep your server active with regular player activity, or set up a simple cron job that restarts the service weekly to show usage.<\/p>\n<h2 id=\"when-free-tier-isnt-enough\">When Free Tier Isn&#8217;t Enough<\/h2>\n<p>Oracle&#8217;s free tier works great for small friend groups, but it has limitations. You&#8217;re sharing CPU resources with other tenants, which can cause occasional lag spikes. Network bandwidth is also limited compared to dedicated hosting.<\/p>\n<p>If you&#8217;re planning to grow beyond 15 players or want guaranteed performance without the technical setup hassle, <a href=\"https:\/\/gameteam.io\">managed Minecraft hosting from GameTeam.io starts at $1\/GB with 20% off for new customers<\/a>. You get instant setup, automatic backups, and support when things break\u2014no SSH required.<\/p>\n<h2 id=\"frequently-asked-questions\">Frequently Asked Questions<\/h2>\n<h3 id=\"how-many-players-can-oracle-cloud-free-tier-support\">How many players can Oracle Cloud free tier support?<\/h3>\n<p>Realistically 10-15 players with proper optimization. Performance depends on your world size, loaded chunks, and installed plugins. Vanilla Minecraft runs better than heavily modded servers.<\/p>\n<h3 id=\"will-oracle-charge-me-for-exceeding-free-tier-limits\">Will Oracle charge me for exceeding free tier limits?<\/h3>\n<p>Not unless you manually upgrade resources beyond the Always Free allocation. The 4 OCPU and 24GB RAM configuration stays free permanently. Oracle won&#8217;t surprise you with charges.<\/p>\n<h3 id=\"can-i-run-modded-minecraft-on-oracle-cloud\">Can I run modded Minecraft on Oracle Cloud?<\/h3>\n<p>Yes, but resource requirements increase significantly. Forge and Fabric servers need more RAM and CPU. You might need to reduce player count to 5-8 for stable performance with popular modpacks.<\/p>\n<h3 id=\"what-happens-if-my-instance-gets-terminated\">What happens if my instance gets terminated?<\/h3>\n<p>Always Free instances should remain active indefinitely, but Oracle can reclaim them for policy violations or extended inactivity. Keep regular backups of your world folder with <code>rsync<\/code> or SCP to your local machine.<\/p>\n<h3 id=\"is-oracle-cloud-faster-than-other-free-hosting-options\">Is Oracle Cloud faster than other free hosting options?<\/h3>\n<p>Oracle&#8217;s ARM-based Ampere processors outperform most free alternatives significantly. You&#8217;re getting legitimate enterprise hardware, not repurposed desktop computers. Network latency varies by region\u2014choose the data center closest to your players.<\/p>\n<p>Running a Minecraft server on Oracle Cloud free tier gives you legitimate hosting power without monthly costs. The setup requires some Linux knowledge, but once configured, it runs reliably for small communities. Just remember to keep backups and monitor resource usage as your world grows.<\/p>\n","protected":false},"excerpt":{"rendered":"Oracle Cloud&#8217;s free tier gives you enough compute power to run a Minecraft server 24\/7 without spending a&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-3510","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.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Minecraft Server on Oracle Cloud: Free Tier 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-oracle-cloud-free-tier-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 Oracle Cloud: Free Tier Setup - GameTeam - Blog\" \/>\n<meta property=\"og:description\" content=\"Oracle Cloud&#8217;s free tier gives you enough compute power to run a Minecraft server 24\/7 without spending a&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/gameteam.io\/blog\/minecraft-server-on-oracle-cloud-free-tier-setup\/\" \/>\n<meta property=\"og:site_name\" content=\"GameTeam - Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-04T03:52:00+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=\"6 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-oracle-cloud-free-tier-setup\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-oracle-cloud-free-tier-setup\\\/\"},\"author\":{\"name\":\"gameteam\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/#\\\/schema\\\/person\\\/0cc694e709c1805f635ede3a5e1dbf83\"},\"headline\":\"Minecraft Server on Oracle Cloud: Free Tier Setup\",\"datePublished\":\"2025-11-04T03:52:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-oracle-cloud-free-tier-setup\\\/\"},\"wordCount\":1091,\"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-oracle-cloud-free-tier-setup\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-oracle-cloud-free-tier-setup\\\/\",\"url\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-oracle-cloud-free-tier-setup\\\/\",\"name\":\"Minecraft Server on Oracle Cloud: Free Tier Setup - GameTeam - Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/#website\"},\"datePublished\":\"2025-11-04T03:52:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-oracle-cloud-free-tier-setup\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-oracle-cloud-free-tier-setup\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-oracle-cloud-free-tier-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 Oracle Cloud: Free Tier 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 Oracle Cloud: Free Tier 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-oracle-cloud-free-tier-setup\/","og_locale":"en_US","og_type":"article","og_title":"Minecraft Server on Oracle Cloud: Free Tier Setup - GameTeam - Blog","og_description":"Oracle Cloud&#8217;s free tier gives you enough compute power to run a Minecraft server 24\/7 without spending a&hellip;","og_url":"https:\/\/gameteam.io\/blog\/minecraft-server-on-oracle-cloud-free-tier-setup\/","og_site_name":"GameTeam - Blog","article_published_time":"2025-11-04T03:52:00+00:00","author":"gameteam","twitter_card":"summary_large_image","twitter_misc":{"Written by":"gameteam","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-oracle-cloud-free-tier-setup\/#article","isPartOf":{"@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-oracle-cloud-free-tier-setup\/"},"author":{"name":"gameteam","@id":"https:\/\/gameteam.io\/blog\/#\/schema\/person\/0cc694e709c1805f635ede3a5e1dbf83"},"headline":"Minecraft Server on Oracle Cloud: Free Tier Setup","datePublished":"2025-11-04T03:52:00+00:00","mainEntityOfPage":{"@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-oracle-cloud-free-tier-setup\/"},"wordCount":1091,"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-oracle-cloud-free-tier-setup\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-oracle-cloud-free-tier-setup\/","url":"https:\/\/gameteam.io\/blog\/minecraft-server-on-oracle-cloud-free-tier-setup\/","name":"Minecraft Server on Oracle Cloud: Free Tier Setup - GameTeam - Blog","isPartOf":{"@id":"https:\/\/gameteam.io\/blog\/#website"},"datePublished":"2025-11-04T03:52:00+00:00","breadcrumb":{"@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-oracle-cloud-free-tier-setup\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/gameteam.io\/blog\/minecraft-server-on-oracle-cloud-free-tier-setup\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-oracle-cloud-free-tier-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 Oracle Cloud: Free Tier 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\/3510","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=3510"}],"version-history":[{"count":0,"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/posts\/3510\/revisions"}],"wp:attachment":[{"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/media?parent=3510"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/categories?post=3510"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/tags?post=3510"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}