{"id":3505,"date":"2025-11-03T09:49:06","date_gmt":"2025-11-03T06:49:06","guid":{"rendered":"https:\/\/gameteam.io\/blog\/minecraft-server-on-debian-stable-server-setup\/"},"modified":"2025-11-03T09:49:06","modified_gmt":"2025-11-03T06:49:06","slug":"minecraft-server-on-debian-stable-server-setup","status":"publish","type":"post","link":"https:\/\/gameteam.io\/blog\/minecraft-server-on-debian-stable-server-setup\/","title":{"rendered":"Minecraft Server on Debian: Stable Server Setup"},"content":{"rendered":"<p>Debian isn\u2019t flashy, but it\u2019s the Linux distribution that just <em>works<\/em>. When you\u2019re hosting a Minecraft server, that reliability matters more than having the latest kernel version. Your players don\u2019t care about your OS \u2013 they care about uptime and smooth gameplay.<\/p>\n<h2 id=\"why-debian-makes-sense-for-minecraft-servers\">Why Debian Makes Sense for Minecraft Servers<\/h2>\n<p>Debian is the Linux distribution that prioritizes stability over everything else. While Ubuntu pushes updates constantly and Arch gives you bleeding-edge packages, Debian tests the hell out of everything before it reaches your server. For a Minecraft server that needs to run 24\/7, this conservative approach means fewer surprise crashes at 2 AM.<\/p>\n<p><strong>Debian provides a rock-solid foundation for Minecraft servers through thoroughly tested packages, predictable update cycles, and extensive documentation.<\/strong> The distribution\u2019s focus on stability means your server stays online while other admins are troubleshooting the latest kernel panic.<\/p>\n<p>The package manager (APT) is straightforward, the security team actually responds to vulnerabilities quickly, and you\u2019re not fighting against the system to keep things running. Plus, Debian\u2019s minimal base installation means you\u2019re not wasting resources on desktop environments or unnecessary services.<\/p>\n<h2 id=\"server-requirements-and-initial-setup\">Server Requirements and Initial Setup<\/h2>\n<p>Before you install anything, let\u2019s talk hardware. A vanilla Minecraft server needs at least 2GB of RAM, but that\u2019s cutting it close. Plan for 4GB minimum if you want more than five players, and scale up from there. Modded servers? Double everything.<\/p>\n<h3 id=\"choosing-your-debian-version\">Choosing Your Debian Version<\/h3>\n<p>Stick with Debian 12 (Bookworm) for new installations. It\u2019s the current stable release with long-term support. Don\u2019t use Testing or Unstable branches for game servers \u2013 that defeats the entire purpose of using Debian.<\/p>\n<p>Download the netinstall ISO if you\u2019re comfortable with minimal installations, or grab the standard ISO if you want a few more tools out of the box. Either way, skip the desktop environment during installation.<\/p>\n<h3 id=\"essential-system-preparation\">Essential System Preparation<\/h3>\n<p>After your base Debian installation, update the system first:<\/p>\n<p><code>sudo apt update && sudo apt upgrade -y<\/code><\/p>\n<p>Install the packages you\u2019ll actually need:<\/p>\n<p><code>sudo apt install openjdk-17-jre-headless screen wget curl nano -y<\/code><\/p>\n<p>Java 17 is the sweet spot for modern Minecraft versions. The headless JRE skips GUI components you don\u2019t need on a server, saving about 200MB of RAM.<\/p>\n<h2 id=\"installing-and-configuring-your-minecraft-server\">Installing and Configuring Your Minecraft Server<\/h2>\n<p>Create a dedicated user for the server. Running Minecraft as root is asking for trouble:<\/p>\n<p><code>sudo adduser minecraft<\/code><\/p>\n<p>Switch to that user and create a directory for your server files:<\/p>\n<p><code>su - minecraft<br \/>mkdir ~\/server<br \/>cd ~\/server<\/code><\/p>\n<h3 id=\"downloading-the-server-software\">Downloading the Server Software<\/h3>\n<p>Grab the latest server JAR from Mojang\u2019s official site. Use wget to download it directly to your server:<\/p>\n<p><code>wget https:\/\/launcher.mojang.com\/v1\/objects\/[version]\/server.jar<\/code><\/p>\n<p>Run it once to generate the EULA file:<\/p>\n<p><code>java -Xmx2G -Xms2G -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>, save, and exit.<\/p>\n<h3 id=\"memory-allocation-and-jvm-flags\">Memory Allocation and JVM Flags<\/h3>\n<p>The <code>-Xmx<\/code> and <code>-Xms<\/code> flags control memory allocation. Set them to the same value to prevent heap resizing during gameplay, which causes lag spikes. For a 4GB server, use:<\/p>\n<p><code>java -Xmx3G -Xms3G -jar server.jar nogui<\/code><\/p>\n<p>Leave about 1GB for the operating system and other processes. Modern JVM garbage collection handles Minecraft pretty well, but you can add Aikar\u2019s flags if you\u2019re running larger servers with 10+ players.<\/p>\n<h2 id=\"network-configuration-and-port-forwarding\">Network Configuration and Port Forwarding<\/h2>\n<p>Minecraft uses port 25565 by default. You need to open this in Debian\u2019s firewall (if you enabled one) and forward it through your router.<\/p>\n<p>For UFW users:<\/p>\n<p><code>sudo ufw allow 25565\/tcp<\/code><\/p>\n<p>For iptables:<\/p>\n<p><code>sudo iptables -A INPUT -p tcp --dport 25565 -j ACCEPT<\/code><\/p>\n<p>Router configuration varies by manufacturer, but the concept is the same: forward external port 25565 to your server\u2019s internal IP on port 25565. Check your router\u2019s manual or admin interface.<\/p>\n<h3 id=\"static-ip-assignment\">Static IP Assignment<\/h3>\n<p>Your server needs a static local IP address, or port forwarding breaks every time your router assigns a new DHCP lease. Edit your network configuration in <code>\/etc\/network\/interfaces<\/code> or use nmcli if you\u2019re running NetworkManager.<\/p>\n<p>For a static IP using interfaces:<\/p>\n<p><code>auto eth0<br \/>iface eth0 inet static<br \/>\u00a0\u00a0address 192.168.1.100<br \/>\u00a0\u00a0netmask 255.255.255.0<br \/>\u00a0\u00a0gateway 192.168.1.1<\/code><\/p>\n<p>Adjust these values to match your network setup.<\/p>\n<h2 id=\"running-minecraft-as-a-system-service\">Running Minecraft as a System Service<\/h2>\n<p>Using screen or tmux works, but systemd services are cleaner for production servers. Create a service file:<\/p>\n<p><code>sudo nano \/etc\/systemd\/system\/minecraft.service<\/code><\/p>\n<p>Add this configuration:<\/p>\n<p><code>[Unit]Description=Minecraft Server<br \/>After=network.target<\/p>\n[Service]User=minecraft<br \/>WorkingDirectory=\/home\/minecraft\/server<br \/>ExecStart=\/usr\/bin\/java -Xmx3G -Xms3G -jar server.jar nogui<br \/>Restart=on-failure<br \/>RestartSec=10<\/p>\n[Install]WantedBy=multi-user.target<\/code><\/p>\n<p>Enable and start the service:<\/p>\n<p><code>sudo systemctl enable minecraft<br \/>sudo systemctl start minecraft<\/code><\/p>\n<p>Check status with <code>systemctl status minecraft<\/code>. Your server now starts automatically on boot and restarts if it crashes.<\/p>\n<h2 id=\"server-optimization-and-maintenance\">Server Optimization and Maintenance<\/h2>\n<p>Debian\u2019s stability means less maintenance, but you still need regular tasks. Set up automated backups of your world files \u2013 losing a world because you skipped backups is a terrible feeling.<\/p>\n<h3 id=\"automated-backup-script\">Automated Backup Script<\/h3>\n<p>Create a simple backup script that runs daily via cron:<\/p>\n<p><code>#!\/bin\/bash<br \/>DATE=$(date +%Y-%m-%d)<br \/>tar -czf \/home\/minecraft\/backups\/world-$DATE.tar.gz \/home\/minecraft\/server\/world<\/code><\/p>\n<p>Add it to minecraft user\u2019s crontab to run at 3 AM:<\/p>\n<p><code>0 3 * * * \/home\/minecraft\/backup.sh<\/code><\/p>\n<h3 id=\"performance-monitoring\">Performance Monitoring<\/h3>\n<p>Install htop to watch resource usage: <code>sudo apt install htop<\/code><\/p>\n<p>Check your server\u2019s TPS (ticks per second) in-game with commands like <code>\/forge tps<\/code> or server plugins. Minecraft should maintain 20 TPS for smooth gameplay. Anything below 18 TPS is noticeable lag.<\/p>\n<p>If you\u2019re consistently hitting memory limits, either add more RAM or reduce your view-distance in server.properties. View distance is the biggest performance knob you can turn.<\/p>\n<h2 id=\"common-issues-and-solutions\">Common Issues and Solutions<\/h2>\n<h3 id=\"server-wont-start\">Server Won\u2019t Start<\/h3>\n<p>Check Java version compatibility. Minecraft 1.17+ requires Java 16 or higher. Run <code>java -version<\/code> to verify. If you\u2019re on an older Debian release, you might need to add backports or install Java manually.<\/p>\n<h3 id=\"connection-timeouts\">Connection Timeouts<\/h3>\n<p>Usually firewall or port forwarding issues. Verify your external IP hasn\u2019t changed (use a dynamic DNS service if you don\u2019t have a static IP). Test port forwarding with online port checkers while your server is running.<\/p>\n<h3 id=\"out-of-memory-errors\">Out of Memory Errors<\/h3>\n<p>Either increase your <code>-Xmx<\/code> value or reduce server load. Remove unnecessary plugins, decrease view-distance, or limit entity counts in server.properties.<\/p>\n<p>Want to skip the setup headaches? <a href=\"https:\/\/gameteam.io\">GameTeam.io offers managed Minecraft hosting starting at $1\/GB<\/a> with 20% off for new customers \u2013 your server\u2019s online in minutes, not hours.<\/p>\n<h2 id=\"security-hardening\">Security Hardening<\/h2>\n<p>Debian\u2019s default security is decent, but game servers need extra attention. Disable root SSH login in <code>\/etc\/ssh\/sshd_config<\/code> and use SSH keys instead of passwords.<\/p>\n<p>Keep your system updated with unattended-upgrades:<\/p>\n<p><code>sudo apt install unattended-upgrades<br \/>sudo dpkg-reconfigure unattended-upgrades<\/code><\/p>\n<p>For Minecraft itself, whitelist your server if it\u2019s private: <code>whitelist on<\/code> in server.properties. Enable online-mode to verify player accounts and prevent cracked clients.<\/p>\n<h2 id=\"faq\">FAQ<\/h2>\n<h3 id=\"can-i-run-multiple-minecraft-servers-on-one-debian-machine\">Can I run multiple Minecraft servers on one Debian machine?<\/h3>\n<p>Yes, just use different ports for each server and create separate systemd services. Make sure you have enough RAM \u2013 each server instance needs its own allocation.<\/p>\n<h3 id=\"should-i-use-debian-or-ubuntu-for-minecraft-hosting\">Should I use Debian or Ubuntu for Minecraft hosting?<\/h3>\n<p>Debian if you prioritize stability and don\u2019t need the absolute latest packages. Ubuntu if you want newer software versions and don\u2019t mind more frequent updates. For game servers, Debian\u2019s approach usually wins. Similar considerations apply when <a href=\"https:\/\/gameteam.io\/blog\/minecraft-server-on-centos-enterprise-linux-guide\/\">choosing between Debian and CentOS for enterprise setups<\/a>.<\/p>\n<h3 id=\"how-do-i-update-my-minecraft-server-on-debian\">How do I update my Minecraft server on Debian?<\/h3>\n<p>Stop the server, backup your world, download the new server JAR, replace the old one, and restart. Test on a copy of your world first if it\u2019s a major version update. Plugins and mods need separate updates.<\/p>\n<h3 id=\"whats-the-minimum-ram-for-a-modded-minecraft-server\">What\u2019s the minimum RAM for a modded Minecraft server?<\/h3>\n<p>6GB minimum for light modpacks, 8-12GB for heavier packs like All The Mods or Enigmatica. Modded servers are RAM-hungry beasts.<\/p>\n<h3 id=\"can-i-run-minecraft-on-debian-11\">Can I run Minecraft on Debian 11?<\/h3>\n<p>Yes, Debian 11 (Bullseye) still receives security updates until 2026. Just make sure you have Java 17 installed for modern Minecraft versions.<\/p>\n<p>Debian gives you the boring reliability that makes great game server hosting possible. Set it up right once, and you\u2019ll spend your time playing instead of troubleshooting.<\/p>\n","protected":false},"excerpt":{"rendered":"Debian isn\u2019t flashy, but it\u2019s the Linux distribution that just works. When you\u2019re hosting a Minecraft server, that&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-3505","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 Debian: Stable Server 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-debian-stable-server-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 Debian: Stable Server Setup - GameTeam - Blog\" \/>\n<meta property=\"og:description\" content=\"Debian isn\u2019t flashy, but it\u2019s the Linux distribution that just works. When you\u2019re hosting a Minecraft server, that&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/gameteam.io\/blog\/minecraft-server-on-debian-stable-server-setup\/\" \/>\n<meta property=\"og:site_name\" content=\"GameTeam - Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-03T06:49:06+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-debian-stable-server-setup\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-debian-stable-server-setup\\\/\"},\"author\":{\"name\":\"gameteam\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/#\\\/schema\\\/person\\\/0cc694e709c1805f635ede3a5e1dbf83\"},\"headline\":\"Minecraft Server on Debian: Stable Server Setup\",\"datePublished\":\"2025-11-03T06:49:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-debian-stable-server-setup\\\/\"},\"wordCount\":1195,\"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-debian-stable-server-setup\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-debian-stable-server-setup\\\/\",\"url\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-debian-stable-server-setup\\\/\",\"name\":\"Minecraft Server on Debian: Stable Server Setup - GameTeam - Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/#website\"},\"datePublished\":\"2025-11-03T06:49:06+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-debian-stable-server-setup\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-debian-stable-server-setup\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-debian-stable-server-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 Debian: Stable Server 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 Debian: Stable Server 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-debian-stable-server-setup\/","og_locale":"en_US","og_type":"article","og_title":"Minecraft Server on Debian: Stable Server Setup - GameTeam - Blog","og_description":"Debian isn\u2019t flashy, but it\u2019s the Linux distribution that just works. When you\u2019re hosting a Minecraft server, that&hellip;","og_url":"https:\/\/gameteam.io\/blog\/minecraft-server-on-debian-stable-server-setup\/","og_site_name":"GameTeam - Blog","article_published_time":"2025-11-03T06:49:06+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-debian-stable-server-setup\/#article","isPartOf":{"@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-debian-stable-server-setup\/"},"author":{"name":"gameteam","@id":"https:\/\/gameteam.io\/blog\/#\/schema\/person\/0cc694e709c1805f635ede3a5e1dbf83"},"headline":"Minecraft Server on Debian: Stable Server Setup","datePublished":"2025-11-03T06:49:06+00:00","mainEntityOfPage":{"@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-debian-stable-server-setup\/"},"wordCount":1195,"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-debian-stable-server-setup\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-debian-stable-server-setup\/","url":"https:\/\/gameteam.io\/blog\/minecraft-server-on-debian-stable-server-setup\/","name":"Minecraft Server on Debian: Stable Server Setup - GameTeam - Blog","isPartOf":{"@id":"https:\/\/gameteam.io\/blog\/#website"},"datePublished":"2025-11-03T06:49:06+00:00","breadcrumb":{"@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-debian-stable-server-setup\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/gameteam.io\/blog\/minecraft-server-on-debian-stable-server-setup\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-debian-stable-server-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 Debian: Stable Server 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\/3505","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=3505"}],"version-history":[{"count":0,"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/posts\/3505\/revisions"}],"wp:attachment":[{"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/media?parent=3505"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/categories?post=3505"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/tags?post=3505"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}