{"id":3502,"date":"2025-11-03T00:48:10","date_gmt":"2025-11-02T21:48:10","guid":{"rendered":"https:\/\/gameteam.io\/blog\/minecraft-server-on-macos-installation-guide\/"},"modified":"2025-11-03T00:48:10","modified_gmt":"2025-11-02T21:48:10","slug":"minecraft-server-on-macos-installation-guide","status":"publish","type":"post","link":"https:\/\/gameteam.io\/blog\/minecraft-server-on-macos-installation-guide\/","title":{"rendered":"Minecraft Server on macOS: Installation Guide"},"content":{"rendered":"<p>Running a Minecraft server on macOS is simpler than most people think, but Apple\u2019s ecosystem throws a few curveballs that can trip up even experienced server admins. The good news? Once you nail the initial setup, your Mac makes a surprisingly capable hosting machine for small to medium-sized servers.<\/p>\n<h2 id=\"quick-answer-setting-up-minecraft-server-on-macos\">Quick Answer: Setting Up Minecraft Server on macOS<\/h2>\n<p>To run a Minecraft server on macOS, you need Java installed, the official server.jar file from Mojang, and about 15 minutes. Download the server file, create a startup script, allocate RAM through Terminal commands, and configure your network settings. The process works identically on Intel and Apple Silicon Macs, though M1\/M2 chips require Rosetta 2 for Java compatibility.<\/p>\n<h2 id=\"prerequisites-what-you-need-before-starting\">Prerequisites: What You Need Before Starting<\/h2>\n<p>Let\u2019s get the basics out of the way first. Your Mac needs to meet some minimum requirements, and you\u2019ll need a few pieces of software ready to go.<\/p>\n<h3 id=\"system-requirements\">System Requirements<\/h3>\n<p>Any Mac from 2015 or newer will handle a basic Minecraft server, but here\u2019s what you\u2019re looking at for different player counts:<\/p>\n<ul>\n<li><strong>1-5 players:<\/strong> 4GB RAM minimum, 8GB recommended<\/li>\n<li><strong>5-10 players:<\/strong> 8GB RAM minimum, 16GB recommended<\/li>\n<li><strong>10+ players:<\/strong> 16GB+ RAM and consider dedicated hosting instead<\/li>\n<\/ul>\n<p>Storage isn\u2019t usually a problem\u2014the server files start around 200MB and grow based on world size and player activity. Budget at least 5GB of free space to be safe.<\/p>\n<h3 id=\"java-installation\">Java Installation<\/h3>\n<p>Minecraft servers run on Java, and macOS doesn\u2019t include it by default anymore. You need Java 17 or newer for Minecraft 1.18 and above, or Java 8 for older versions.<\/p>\n<p>Download the appropriate Java Development Kit (JDK) from Oracle or use Homebrew if you\u2019re comfortable with package managers. Open Terminal and type <code>java -version<\/code> to verify installation. If you see version information, you\u2019re good to go. If you get command errors, <a href=\"https:\/\/gameteam.io\/blog\/minecraft-server-download-issues-java-jar-file-problems\/\">troubleshoot your Java installation<\/a> before proceeding.<\/p>\n<h2 id=\"downloading-the-minecraft-server-files\">Downloading the Minecraft Server Files<\/h2>\n<p>Head to the official Minecraft website and grab the server.jar file. Don\u2019t use random download sites\u2014stick with Mojang\u2019s official server download page to avoid modified or malicious files.<\/p>\n<p>Create a dedicated folder for your server. I recommend something like <code>~\/MinecraftServer<\/code> in your home directory. Drop the server.jar file into this folder. This keeps everything organized and makes troubleshooting easier later.<\/p>\n<h2 id=\"initial-server-configuration\">Initial Server Configuration<\/h2>\n<p>Now comes the fun part. Open Terminal (it\u2019s in Applications > Utilities) and navigate to your server folder:<\/p>\n<p><code>cd ~\/MinecraftServer<\/code><\/p>\n<h3 id=\"first-launch-and-eula-agreement\">First Launch and EULA Agreement<\/h3>\n<p>Run this command to start the server for the first time:<\/p>\n<p><code>java -Xmx1024M -Xms1024M -jar server.jar nogui<\/code><\/p>\n<p>The server will immediately stop and create a file called eula.txt. You need to agree to Minecraft\u2019s End User License Agreement. Open eula.txt with TextEdit, change <code>eula=false<\/code> to <code>eula=true<\/code>, and save it.<\/p>\n<h3 id=\"memory-allocation\">Memory Allocation<\/h3>\n<p>The -Xmx and -Xms flags control RAM allocation. The command above allocates 1GB, which barely works for 2-3 players. Bump these numbers based on your needs:<\/p>\n<ul>\n<li><strong>2GB:<\/strong> <code>-Xmx2G -Xms2G<\/code><\/li>\n<li><strong>4GB:<\/strong> <code>-Xmx4G -Xms4G<\/code><\/li>\n<li><strong>8GB:<\/strong> <code>-Xmx8G -Xms8G<\/code><\/li>\n<\/ul>\n<p>Don\u2019t allocate all your Mac\u2019s RAM\u2014leave at least 4GB for macOS itself or your system will crawl.<\/p>\n<h3 id=\"creating-a-startup-script\">Creating a Startup Script<\/h3>\n<p>Typing that Java command every time gets old fast. Create a simple startup script instead.<\/p>\n<p>Open TextEdit, paste your Java command, and save the file as <code>start.command<\/code> in your server folder. Then make it executable:<\/p>\n<p><code>chmod +x start.command<\/code><\/p>\n<p>Now you can double-click start.command to launch your server. Much cleaner.<\/p>\n<h2 id=\"network-configuration-and-port-forwarding\">Network Configuration and Port Forwarding<\/h2>\n<p>Your server runs locally at this point. Friends can\u2019t connect unless you configure your network properly.<\/p>\n<h3 id=\"finding-your-local-ip\">Finding Your Local IP<\/h3>\n<p>Open System Preferences > Network and note your local IP address (looks like 192.168.x.x). Players on your local network can connect using this IP.<\/p>\n<h3 id=\"port-forwarding-setup\">Port Forwarding Setup<\/h3>\n<p>For external connections, you need to forward port 25565 (Minecraft\u2019s default) through your router. Log into your router\u2019s admin panel\u2014usually at 192.168.1.1 or 192.168.0.1\u2014and create a port forwarding rule pointing port 25565 to your Mac\u2019s local IP.<\/p>\n<p>Every router interface looks different, so search for \u201c[your router model] port forwarding guide\u201d if you get stuck. You\u2019ll also need your public IP address (find it at whatismyip.com) to give to players.<\/p>\n<p><strong>Security note:<\/strong> Opening ports exposes your network to potential attacks. Use a strong server password and consider running the server only when actively playing. For serious hosting, <a href=\"https:\/\/gameteam.io\">dedicated game server hosting starting at $1\/GB<\/a> handles security, uptime, and performance better than home setups\u2014plus you can grab 20% off right now.<\/p>\n<h2 id=\"server-properties-and-customization\">Server Properties and Customization<\/h2>\n<p>The server.properties file controls everything from difficulty to world generation. Open it with TextEdit after the first successful launch.<\/p>\n<p>Key settings worth changing immediately:<\/p>\n<ul>\n<li><strong>max-players:<\/strong> Set your player limit<\/li>\n<li><strong>difficulty:<\/strong> peaceful, easy, normal, or hard<\/li>\n<li><strong>gamemode:<\/strong> survival, creative, adventure, or spectator<\/li>\n<li><strong>pvp:<\/strong> true or false for player combat<\/li>\n<li><strong>white-list:<\/strong> Enable to restrict access to approved players<\/li>\n<\/ul>\n<p>Changes take effect after restarting the server. Save the file, stop the server (type \u201cstop\u201d in the console), and launch it again.<\/p>\n<h2 id=\"performance-optimization-for-macos\">Performance Optimization for macOS<\/h2>\n<p>Macs aren\u2019t traditionally gaming machines, but you can squeeze out better performance with a few tweaks.<\/p>\n<h3 id=\"java-garbage-collection\">Java Garbage Collection<\/h3>\n<p>Add these flags to your startup command for better memory management:<\/p>\n<p><code>-XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200<\/code><\/p>\n<p>Your full command might look like:<\/p>\n<p><code>java -Xmx4G -Xms4G -XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200 -jar server.jar nogui<\/code><\/p>\n<h3 id=\"background-process-management\">Background Process Management<\/h3>\n<p>Close unnecessary applications while running your server. Chrome and Safari are notorious RAM hogs. Activity Monitor (Applications > Utilities) shows what\u2019s eating resources.<\/p>\n<h3 id=\"apple-silicon-considerations\">Apple Silicon Considerations<\/h3>\n<p>M1 and M2 Macs run Java through Rosetta 2 translation, which adds slight overhead. Performance is still solid, but you won\u2019t see the full benefit of Apple\u2019s chips. Native ARM Java exists but has compatibility issues with some Minecraft mods and plugins.<\/p>\n<h2 id=\"common-macos-specific-issues\">Common macOS-Specific Issues<\/h2>\n<h3 id=\"permission-errors\">Permission Errors<\/h3>\n<p>macOS security can block the server from creating files. If you see permission errors, right-click your server folder, select Get Info, and ensure you have Read & Write access under Sharing & Permissions.<\/p>\n<h3 id=\"firewall-blocking\">Firewall Blocking<\/h3>\n<p>macOS Firewall might block incoming connections. Go to System Preferences > Security & Privacy > Firewall > Firewall Options and add Java to the allowed applications list.<\/p>\n<h3 id=\"sleep-mode-interruptions\">Sleep Mode Interruptions<\/h3>\n<p>Your Mac going to sleep kills the server. Prevent this in System Preferences > Energy Saver by setting \u201cPrevent computer from sleeping automatically when display is off\u201d or use a utility like Amphetamine to keep it awake.<\/p>\n<h2 id=\"alternative-docker-container-setup\">Alternative: Docker Container Setup<\/h2>\n<p>If you\u2019re comfortable with containers, <a href=\"https:\/\/gameteam.io\/blog\/minecraft-server-docker-setup-container-hosting-guide\/\">running your Minecraft server in Docker<\/a> provides better isolation and easier version management. Docker Desktop works well on macOS, though it adds complexity for beginners.<\/p>\n<h2 id=\"frequently-asked-questions\">Frequently Asked Questions<\/h2>\n<h3 id=\"can-i-run-a-modded-server-on-macos\">Can I run a modded server on macOS?<\/h3>\n<p>Absolutely. Download Forge or Fabric server files instead of vanilla server.jar. The installation process is nearly identical\u2014just replace the jar file and follow the mod loader\u2019s specific instructions. Performance takes a bigger hit with mods, so allocate extra RAM.<\/p>\n<h3 id=\"how-do-i-back-up-my-server-world\">How do I back up my server world?<\/h3>\n<p>Copy the entire server folder to an external drive or cloud storage. The \u201cworld\u201d folder contains all your terrain and player data. Stop the server before backing up to avoid file corruption. Automate this with a simple shell script if you\u2019re running the server regularly.<\/p>\n<h3 id=\"why-is-my-server-lagging-with-only-a-few-players\">Why is my server lagging with only a few players?<\/h3>\n<p>Check Activity Monitor for CPU and RAM usage. If you\u2019re maxed out, reduce render distance in server.properties (view-distance setting) or allocate more RAM. Lag also comes from chunk generation when exploring new areas\u2014this is temporary and improves once the world loads.<\/p>\n<h3 id=\"can-i-run-multiple-minecraft-servers-on-one-mac\">Can I run multiple Minecraft servers on one Mac?<\/h3>\n<p>Yes, but each needs a separate folder and unique port number. Change the server-port setting in server.properties for additional servers (use 25566, 25567, etc.). Remember that each server consumes RAM, so your Mac\u2019s capacity limits how many you can run simultaneously.<\/p>\n<h3 id=\"do-i-need-to-keep-terminal-open-while-the-server-runs\">Do I need to keep Terminal open while the server runs?<\/h3>\n<p>Yes, closing Terminal kills the server process. If you need the server running 24\/7 without keeping Terminal open, look into screen or tmux commands for persistent sessions, or consider dedicated hosting that handles uptime automatically.<\/p>\n<h2 id=\"when-to-consider-dedicated-hosting\">When to Consider Dedicated Hosting<\/h2>\n<p>Running a server on your Mac works great for casual play with friends, but it has limits. Your internet upload speed caps player experience, you can\u2019t play on the same machine without performance hits, and keeping your Mac running 24\/7 isn\u2019t practical for most people.<\/p>\n<p>Once you\u2019re past 10 regular players or want better uptime, professional hosting makes more sense. You get dedicated resources, DDoS protection, automated backups, and one-click mod installation. <a href=\"https:\/\/gameteam.io\">GameTeam.io offers Minecraft hosting from $1\/GB<\/a> with full control panel access\u2014way easier than managing everything through Terminal, and you can snag 20% off for a limited time.<\/p>\n<p>Your Mac-hosted server taught you the fundamentals, though. Understanding how servers work makes you a better admin regardless of where you host.<\/p>\n","protected":false},"excerpt":{"rendered":"Running a Minecraft server on macOS is simpler than most people think, but Apple\u2019s ecosystem throws a few&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-3502","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 macOS: Installation Guide - 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-macos-installation-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Minecraft Server on macOS: Installation Guide - GameTeam - Blog\" \/>\n<meta property=\"og:description\" content=\"Running a Minecraft server on macOS is simpler than most people think, but Apple\u2019s ecosystem throws a few&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/gameteam.io\/blog\/minecraft-server-on-macos-installation-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"GameTeam - Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-02T21:48:10+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-macos-installation-guide\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-macos-installation-guide\\\/\"},\"author\":{\"name\":\"gameteam\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/#\\\/schema\\\/person\\\/0cc694e709c1805f635ede3a5e1dbf83\"},\"headline\":\"Minecraft Server on macOS: Installation Guide\",\"datePublished\":\"2025-11-02T21:48:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-macos-installation-guide\\\/\"},\"wordCount\":1444,\"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-macos-installation-guide\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-macos-installation-guide\\\/\",\"url\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-macos-installation-guide\\\/\",\"name\":\"Minecraft Server on macOS: Installation Guide - GameTeam - Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/#website\"},\"datePublished\":\"2025-11-02T21:48:10+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-macos-installation-guide\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-macos-installation-guide\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-macos-installation-guide\\\/#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 macOS: Installation Guide\"}]},{\"@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 macOS: Installation Guide - 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-macos-installation-guide\/","og_locale":"en_US","og_type":"article","og_title":"Minecraft Server on macOS: Installation Guide - GameTeam - Blog","og_description":"Running a Minecraft server on macOS is simpler than most people think, but Apple\u2019s ecosystem throws a few&hellip;","og_url":"https:\/\/gameteam.io\/blog\/minecraft-server-on-macos-installation-guide\/","og_site_name":"GameTeam - Blog","article_published_time":"2025-11-02T21:48:10+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-macos-installation-guide\/#article","isPartOf":{"@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-macos-installation-guide\/"},"author":{"name":"gameteam","@id":"https:\/\/gameteam.io\/blog\/#\/schema\/person\/0cc694e709c1805f635ede3a5e1dbf83"},"headline":"Minecraft Server on macOS: Installation Guide","datePublished":"2025-11-02T21:48:10+00:00","mainEntityOfPage":{"@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-macos-installation-guide\/"},"wordCount":1444,"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-macos-installation-guide\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-macos-installation-guide\/","url":"https:\/\/gameteam.io\/blog\/minecraft-server-on-macos-installation-guide\/","name":"Minecraft Server on macOS: Installation Guide - GameTeam - Blog","isPartOf":{"@id":"https:\/\/gameteam.io\/blog\/#website"},"datePublished":"2025-11-02T21:48:10+00:00","breadcrumb":{"@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-macos-installation-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/gameteam.io\/blog\/minecraft-server-on-macos-installation-guide\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-macos-installation-guide\/#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 macOS: Installation Guide"}]},{"@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\/3502","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=3502"}],"version-history":[{"count":0,"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/posts\/3502\/revisions"}],"wp:attachment":[{"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/media?parent=3502"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/categories?post=3502"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/tags?post=3502"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}