{"id":1943,"date":"2026-08-15T03:51:48","date_gmt":"2026-08-14T22:21:48","guid":{"rendered":"https:\/\/kwikserver.com\/tutorials\/how-to-make-a-minecraft-server\/"},"modified":"2026-09-14T12:09:04","modified_gmt":"2026-09-14T06:39:04","slug":"how-to-make-a-minecraft-server","status":"publish","type":"post","link":"https:\/\/kwikserver.com\/tutorials\/how-to-make-a-minecraft-server\/","title":{"rendered":"How to Make a Minecraft Server on Windows, Linux, and macOS"},"content":{"rendered":"<p>Minecraft is one of the most-played games in the world, and running your own server gives you full control: invite friends, install mods, set your own rules. It&#8217;s less complicated than it sounds, you mainly need a bit of command-line comfort and a machine to run it on. Here&#8217;s how to set one up on Linux, Windows, and macOS.<\/p>\n<h2>Linux (Ubuntu or CentOS)<\/h2>\n<p>You&#8217;ll need root SSH access to your server (check your welcome email or client area for credentials) and, at minimum, Ubuntu 16.04 or CentOS 7.<\/p>\n<h3>1. Install Java and Screen<\/h3>\n<p>Connect over SSH, then check whether Java is already installed:<\/p>\n<pre>java -version<\/pre>\n<p>If it&#8217;s missing, install it:<\/p>\n<pre># Ubuntu\nsudo apt-get update\nsudo apt-get install default-jdk\n\n# CentOS\nsudo yum update\nsudo yum install java -y<\/pre>\n<p>Then install Screen, which lets the server keep running after you disconnect:<\/p>\n<pre># Ubuntu\nsudo apt-get install screen\n\n# CentOS\nsudo yum install screen -y<\/pre>\n<h3>2. Download and run the server<\/h3>\n<p>Create a dedicated folder and move into it:<\/p>\n<pre>mkdir minecraft\ncd minecraft<\/pre>\n<p>Install wget if you don&#8217;t already have it, then download the server jar (check <a href=\"https:\/\/www.minecraft.net\/en-us\/download\/server\">Minecraft&#8217;s official download page<\/a> for the current version link):<\/p>\n<pre>wget https:\/\/launcher.mojang.com\/path\/to\/server.jar<\/pre>\n<p>Run it once to generate the EULA file (drop <code>nogui<\/code> if you want the graphical console):<\/p>\n<pre>java -Xmx1024M -Xms1024M -jar server.jar nogui<\/pre>\n<p>Open <code>eula.txt<\/code> and change <code>eula=false<\/code> to <code>eula=true<\/code>, then save. Start a detachable Screen session so the server survives after you log out:<\/p>\n<pre>screen -S minecraft-server\njava -Xmx1024M -Xms1024M -jar server.jar nogui<\/pre>\n<p>1024M is the minimum recommended RAM allocation, bump it up to 2048M or higher if your plan has the headroom. To detach from Screen without stopping the server, press <code>Ctrl+A<\/code> then <code>D<\/code>; to reattach later, run <code>screen -r<\/code>. Server settings live in <code>server.properties<\/code> if you need to tweak them, though the defaults work well for most setups.<\/p>\n<h2>Windows<\/h2>\n<ol>\n<li>Check your Java version with <code>java -version<\/code> in Command Prompt; install or update it from the official Java site if needed.<\/li>\n<li>Download the server <code>.jar<\/code> file and place it in its own folder.<\/li>\n<li>Double-click the jar once to generate <code>eula.txt<\/code>, then edit it to set <code>eula=true<\/code>.<\/li>\n<li>Run the server by double-clicking the jar, or from Command Prompt: <code>java -Xmx1024M -Xms1024M -jar server.jar nogui<\/code>. You may need to allow it through Windows Firewall.<\/li>\n<\/ol>\n<h2>macOS<\/h2>\n<p>Recent macOS versions include Java by default (check with <code>java -version<\/code>).<\/p>\n<ol>\n<li>Create a folder for the server and drop the downloaded jar into it.<\/li>\n<li>In TextEdit, switch to plain text mode (Format \u2192 Make Plain Text) and paste:<\/li>\n<\/ol>\n<pre>#!\/bin\/bash\ncd \"$(dirname \"$0\")\"\nexec java -Xms1024M -Xmx1024M -jar server.jar nogui<\/pre>\n<ol start=\"3\">\n<li>Save it as <code>startmc.command<\/code> in the same folder as the server jar.<\/li>\n<li>Make it executable: <code>chmod a+x startmc.command<\/code><\/li>\n<li>Double-click <code>startmc.command<\/code> to launch the server in a new terminal window. A one-time &#8220;missing file&#8221; warning on first launch is normal.<\/li>\n<\/ol>\n<p>Whichever platform you use, a private server built on real dedicated resources feels noticeably smoother than one squeezed onto a shared home connection. KwikServer&#8217;s Linux VPS and Windows VPS plans both work well for hosting a Minecraft server.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A step-by-step walkthrough for setting up your own Minecraft server on Ubuntu, CentOS, Windows, or macOS.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":"","_yoast_wpseo_title":"","_yoast_wpseo_metadesc":"","_yoast_wpseo_focuskw":"","rank_math_title":"","rank_math_description":"","rank_math_focus_keyword":""},"categories":[59],"tags":[],"class_list":["post-1943","post","type-post","status-publish","format-standard","hentry","category-gaming"],"acf":[],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Step-by-step guide to setting up a Minecraft server on Ubuntu, CentOS, Windows, or macOS, including Java setup, the EULA file, and memory allocation.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Kwik Server\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/kwikserver.com\/tutorials\/how-to-make-a-minecraft-server\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Tutorials Kwik Server -\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"How to Make a Minecraft Server (Windows, Linux, Mac)\" \/>\n\t\t<meta property=\"og:description\" content=\"Step-by-step guide to setting up a Minecraft server on Ubuntu, CentOS, Windows, or macOS, including Java setup, the EULA file, and memory allocation.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/kwikserver.com\/tutorials\/how-to-make-a-minecraft-server\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/kwikserver.com\/tutorials\/wp-content\/uploads\/2025\/02\/cropped-Kwik-Server-Logo-1.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/kwikserver.com\/tutorials\/wp-content\/uploads\/2025\/02\/cropped-Kwik-Server-Logo-1.png\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2026-08-14T22:21:48+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-09-14T06:39:04+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How to Make a Minecraft Server (Windows, Linux, Mac)\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Step-by-step guide to setting up a Minecraft server on Ubuntu, CentOS, Windows, or macOS, including Java setup, the EULA file, and memory allocation.\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/kwikserver.com\/tutorials\/wp-content\/uploads\/2025\/02\/cropped-Kwik-Server-Logo-1.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/how-to-make-a-minecraft-server\\\/#blogposting\",\"name\":\"How to Make a Minecraft Server (Windows, Linux, Mac)\",\"headline\":\"How to Make a Minecraft Server on Windows, Linux, and macOS\",\"author\":{\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/author\\\/server2202kwik\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2025\\\/02\\\/cropped-Kwik-Server-Logo-1.png\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/#articleImage\",\"width\":1956,\"height\":683},\"datePublished\":\"2026-08-15T03:51:48+05:30\",\"dateModified\":\"2026-09-14T12:09:04+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/how-to-make-a-minecraft-server\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/how-to-make-a-minecraft-server\\\/#webpage\"},\"articleSection\":\"Gaming\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/how-to-make-a-minecraft-server\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/category\\\/gaming\\\/#listItem\",\"name\":\"Gaming\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/category\\\/gaming\\\/#listItem\",\"position\":2,\"name\":\"Gaming\",\"item\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/category\\\/gaming\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/how-to-make-a-minecraft-server\\\/#listItem\",\"name\":\"How to Make a Minecraft Server on Windows, Linux, and macOS\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/how-to-make-a-minecraft-server\\\/#listItem\",\"position\":3,\"name\":\"How to Make a Minecraft Server on Windows, Linux, and macOS\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/category\\\/gaming\\\/#listItem\",\"name\":\"Gaming\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/#organization\",\"name\":\"Tutorials Kwik Server\",\"url\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2025\\\/02\\\/cropped-Kwik-Server-Logo-1.png\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/how-to-make-a-minecraft-server\\\/#organizationLogo\",\"width\":1956,\"height\":683},\"image\":{\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/how-to-make-a-minecraft-server\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/author\\\/server2202kwik\\\/#author\",\"url\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/author\\\/server2202kwik\\\/\",\"name\":\"Kwik Server\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/how-to-make-a-minecraft-server\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b0b10492ce76cec12cc2303f4951f725e776449ce91e8fff43130c3174c94d70?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Kwik Server\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/how-to-make-a-minecraft-server\\\/#webpage\",\"url\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/how-to-make-a-minecraft-server\\\/\",\"name\":\"How to Make a Minecraft Server (Windows, Linux, Mac)\",\"description\":\"Step-by-step guide to setting up a Minecraft server on Ubuntu, CentOS, Windows, or macOS, including Java setup, the EULA file, and memory allocation.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/how-to-make-a-minecraft-server\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/author\\\/server2202kwik\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/author\\\/server2202kwik\\\/#author\"},\"datePublished\":\"2026-08-15T03:51:48+05:30\",\"dateModified\":\"2026-09-14T12:09:04+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/#website\",\"url\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/\",\"name\":\"Tutorials Kwik Server\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"How to Make a Minecraft Server (Windows, Linux, Mac)","description":"Step-by-step guide to setting up a Minecraft server on Ubuntu, CentOS, Windows, or macOS, including Java setup, the EULA file, and memory allocation.","canonical_url":"https:\/\/kwikserver.com\/tutorials\/how-to-make-a-minecraft-server\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/kwikserver.com\/tutorials\/how-to-make-a-minecraft-server\/#blogposting","name":"How to Make a Minecraft Server (Windows, Linux, Mac)","headline":"How to Make a Minecraft Server on Windows, Linux, and macOS","author":{"@id":"https:\/\/kwikserver.com\/tutorials\/author\/server2202kwik\/#author"},"publisher":{"@id":"https:\/\/kwikserver.com\/tutorials\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/kwikserver.com\/tutorials\/wp-content\/uploads\/2025\/02\/cropped-Kwik-Server-Logo-1.png","@id":"https:\/\/kwikserver.com\/tutorials\/#articleImage","width":1956,"height":683},"datePublished":"2026-08-15T03:51:48+05:30","dateModified":"2026-09-14T12:09:04+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/kwikserver.com\/tutorials\/how-to-make-a-minecraft-server\/#webpage"},"isPartOf":{"@id":"https:\/\/kwikserver.com\/tutorials\/how-to-make-a-minecraft-server\/#webpage"},"articleSection":"Gaming"},{"@type":"BreadcrumbList","@id":"https:\/\/kwikserver.com\/tutorials\/how-to-make-a-minecraft-server\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/kwikserver.com\/tutorials#listItem","position":1,"name":"Home","item":"https:\/\/kwikserver.com\/tutorials","nextItem":{"@type":"ListItem","@id":"https:\/\/kwikserver.com\/tutorials\/category\/gaming\/#listItem","name":"Gaming"}},{"@type":"ListItem","@id":"https:\/\/kwikserver.com\/tutorials\/category\/gaming\/#listItem","position":2,"name":"Gaming","item":"https:\/\/kwikserver.com\/tutorials\/category\/gaming\/","nextItem":{"@type":"ListItem","@id":"https:\/\/kwikserver.com\/tutorials\/how-to-make-a-minecraft-server\/#listItem","name":"How to Make a Minecraft Server on Windows, Linux, and macOS"},"previousItem":{"@type":"ListItem","@id":"https:\/\/kwikserver.com\/tutorials#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/kwikserver.com\/tutorials\/how-to-make-a-minecraft-server\/#listItem","position":3,"name":"How to Make a Minecraft Server on Windows, Linux, and macOS","previousItem":{"@type":"ListItem","@id":"https:\/\/kwikserver.com\/tutorials\/category\/gaming\/#listItem","name":"Gaming"}}]},{"@type":"Organization","@id":"https:\/\/kwikserver.com\/tutorials\/#organization","name":"Tutorials Kwik Server","url":"https:\/\/kwikserver.com\/tutorials\/","logo":{"@type":"ImageObject","url":"https:\/\/kwikserver.com\/tutorials\/wp-content\/uploads\/2025\/02\/cropped-Kwik-Server-Logo-1.png","@id":"https:\/\/kwikserver.com\/tutorials\/how-to-make-a-minecraft-server\/#organizationLogo","width":1956,"height":683},"image":{"@id":"https:\/\/kwikserver.com\/tutorials\/how-to-make-a-minecraft-server\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/kwikserver.com\/tutorials\/author\/server2202kwik\/#author","url":"https:\/\/kwikserver.com\/tutorials\/author\/server2202kwik\/","name":"Kwik Server","image":{"@type":"ImageObject","@id":"https:\/\/kwikserver.com\/tutorials\/how-to-make-a-minecraft-server\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/b0b10492ce76cec12cc2303f4951f725e776449ce91e8fff43130c3174c94d70?s=96&d=mm&r=g","width":96,"height":96,"caption":"Kwik Server"}},{"@type":"WebPage","@id":"https:\/\/kwikserver.com\/tutorials\/how-to-make-a-minecraft-server\/#webpage","url":"https:\/\/kwikserver.com\/tutorials\/how-to-make-a-minecraft-server\/","name":"How to Make a Minecraft Server (Windows, Linux, Mac)","description":"Step-by-step guide to setting up a Minecraft server on Ubuntu, CentOS, Windows, or macOS, including Java setup, the EULA file, and memory allocation.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/kwikserver.com\/tutorials\/#website"},"breadcrumb":{"@id":"https:\/\/kwikserver.com\/tutorials\/how-to-make-a-minecraft-server\/#breadcrumblist"},"author":{"@id":"https:\/\/kwikserver.com\/tutorials\/author\/server2202kwik\/#author"},"creator":{"@id":"https:\/\/kwikserver.com\/tutorials\/author\/server2202kwik\/#author"},"datePublished":"2026-08-15T03:51:48+05:30","dateModified":"2026-09-14T12:09:04+05:30"},{"@type":"WebSite","@id":"https:\/\/kwikserver.com\/tutorials\/#website","url":"https:\/\/kwikserver.com\/tutorials\/","name":"Tutorials Kwik Server","inLanguage":"en-US","publisher":{"@id":"https:\/\/kwikserver.com\/tutorials\/#organization"}}]},"og:locale":"en_US","og:site_name":"Tutorials Kwik Server -","og:type":"article","og:title":"How to Make a Minecraft Server (Windows, Linux, Mac)","og:description":"Step-by-step guide to setting up a Minecraft server on Ubuntu, CentOS, Windows, or macOS, including Java setup, the EULA file, and memory allocation.","og:url":"https:\/\/kwikserver.com\/tutorials\/how-to-make-a-minecraft-server\/","og:image":"https:\/\/kwikserver.com\/tutorials\/wp-content\/uploads\/2025\/02\/cropped-Kwik-Server-Logo-1.png","og:image:secure_url":"https:\/\/kwikserver.com\/tutorials\/wp-content\/uploads\/2025\/02\/cropped-Kwik-Server-Logo-1.png","article:published_time":"2026-08-14T22:21:48+00:00","article:modified_time":"2026-09-14T06:39:04+00:00","twitter:card":"summary_large_image","twitter:title":"How to Make a Minecraft Server (Windows, Linux, Mac)","twitter:description":"Step-by-step guide to setting up a Minecraft server on Ubuntu, CentOS, Windows, or macOS, including Java setup, the EULA file, and memory allocation.","twitter:image":"https:\/\/kwikserver.com\/tutorials\/wp-content\/uploads\/2025\/02\/cropped-Kwik-Server-Logo-1.png"},"aioseo_meta_data":{"post_id":"1943","title":"How to Make a Minecraft Server (Windows, Linux, Mac)","description":"Step-by-step guide to setting up a Minecraft server on Ubuntu, CentOS, Windows, or macOS, including Java setup, the EULA file, and memory allocation.","keywords":null,"keyphrases":{"focus":{"keyphrase":"how to make a Minecraft server"},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2026-08-14 23:06:49","updated":"2026-09-14 06:39:08","seo_analyzer_scan_date":null,"focus_keyword":"how to make a Minecraft server","additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/kwikserver.com\/tutorials\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/kwikserver.com\/tutorials\/category\/gaming\/\" title=\"Gaming\">Gaming<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow to Make a Minecraft Server on Windows, Linux, and macOS\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/kwikserver.com\/tutorials"},{"label":"Gaming","link":"https:\/\/kwikserver.com\/tutorials\/category\/gaming\/"},{"label":"How to Make a Minecraft Server on Windows, Linux, and macOS","link":"https:\/\/kwikserver.com\/tutorials\/how-to-make-a-minecraft-server\/"}],"_links":{"self":[{"href":"https:\/\/kwikserver.com\/tutorials\/wp-json\/wp\/v2\/posts\/1943","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/kwikserver.com\/tutorials\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kwikserver.com\/tutorials\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kwikserver.com\/tutorials\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kwikserver.com\/tutorials\/wp-json\/wp\/v2\/comments?post=1943"}],"version-history":[{"count":1,"href":"https:\/\/kwikserver.com\/tutorials\/wp-json\/wp\/v2\/posts\/1943\/revisions"}],"predecessor-version":[{"id":1998,"href":"https:\/\/kwikserver.com\/tutorials\/wp-json\/wp\/v2\/posts\/1943\/revisions\/1998"}],"wp:attachment":[{"href":"https:\/\/kwikserver.com\/tutorials\/wp-json\/wp\/v2\/media?parent=1943"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kwikserver.com\/tutorials\/wp-json\/wp\/v2\/categories?post=1943"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kwikserver.com\/tutorials\/wp-json\/wp\/v2\/tags?post=1943"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}