Title image with the text "Minecraft Servers 101"

You’ve slain the Ender Dragon, conquered the Nether, and built your own pixelated replica of King’s Landing. Now what? Minecraft may be a game of endless possibilities, but once you’ve seen everything the base game has to offer, you may be asking yourself “how do I recapture that magic I felt on my first play-through?” Thanks to the plethora of options available with custom Minecraft servers, building your own Minecraft server could be just the remedy you’re looking for.

Maybe you’ve played around with some mods on your own. Perhaps you’ve tried your hand at one of the thousands of player-run servers available online. You might be a total Minecraft noob who’s just getting started or it’s possible you’re not even a player at all. Either way, if you’re reading this article then chances are you’re wondering how to make a Minecraft server. Let’s start with the basics.

But wait! Are you interested in hosting your own Minecraft server but don’t want to deal with the inconvenience of building your own? Check out our friends at Gravel Hosting for easy, affordable Minecraft server hosting, all optimized to have you provisioned and ready to play in just minutes! 

History of Minecraft

First released in 2011, Minecraft is a sandbox survival game created by Swedish developer Markus Pearson. With its distinctive visual style, comprised entirely of blocky characters and objects, Minecraft has quickly transcended the world of video games and grown into a household name.

Minecraft is special because it gives players the freedom to play how they want. Featuring gameplay elements that mix environmental destruction, architectural construction, exploration, combat, resource gathering, and crafting, Minecraft offers something for everyone. In fact, as of May 2019, Minecraft has sold over 176 million copies across multiple available platforms. This impressive stat makes Minecraft the best selling video game of all time.

Featuring gameplay elements that mix environmental destruction, architectural construction, exploration, combat, resource gathering, and crafting, Minecraft offers something for everyone.

Part of this success can be attributed to the high degree of customization available. This is not only true of the single-player game, but within the multiplayer experience as well. After all, isn’t mining imaginary diamonds and chopping down blocky trees more fun with friends?

Here’s where the role of privately-owned Minecraft servers comes into play.

Minecraft Servers

Image of Minecraftservers.org home page featuring several top ranked servers

For those of you looking to change up your Minecraft experience but feeling hesitant about the added responsibilities of running your own server, there are a wide variety of specialized servers available online. The website MinecraftServers.org lists thousands of popular privately-hosted servers. Alongside each option, it features in-depth information on what makes each server unique. By offering different experiences such as PvP, Roleplaying, Factions, and Challenges, these servers can vary widely from one to another. The result is an almost infinite number of new experiences within the familiar setting of Minecraft’s existing framework.

However, sometimes, playing on a server built to someone else’s specifications just isn’t enough. We all crave a certain degree of control in our lives. Why would our digital lives be any different? By hosting your own Minecraft server, you are gaining exactly that: the power to build your world the way you desire and share that world with other players.

Hosting your own server gives you the authority to modify variables intrinsic to Minecraft. By tweaking things like spawn rates of enemies and NPCs, overall difficulty, and physical parameters, you can shape the internal parameters of the game. That’s not all though. You can also add modifications server-wide from the wide list of available mods developed outside of the game.

In addition to having control over how the game is played, hosting your server gives you control over who plays the game. Maybe you’re a parent desiring greater control over your child’s online interactions, or an avid role-player seeking like-minded players. By setting up your own server you can determine the type of community you want to build.

Like most things in Minecraft, the only real limit is the user’s own imagination.

Getting Started

Starting out, there are a few things you should know:

  1. First, a Minecraft server doesn’t have to be on a top-of-the-line machine. That being said, it is advised to use a desktop over a laptop. Typically the performance and hardware will be better when compared to that of a notebook or equivalent. This is especially true if a user is playing on the same machine that is hosting the server. Doing both simultaneously requires much more processing power to keep everything running smoothly.
  2. Second, a wired ethernet connection is recommended over the use of wireless internet. The faster connection will improve game performance and reduce lag for users.
  3. Third, home-hosting, while possible, is not recommended. Home connections tend to be slower, and personal computers are typically weaker. Without adequate RAM, the game’s quality will be low. For this reason, you are better off utilizing professional hosting services.

    *NOTE: If you’re curious about what specs to look for in a Minecraft server, check out Jason’s guide on Minecraft Server Buying. Still have questions or concerns? Contact our sales team and let them know you’re looking to build a server specifically for Minecraft. They’ll be happy to walk you through it.
  4. Fourth, it is recommended when starting out to use a server hosting service running Debian 9 or Ubuntu 18.04. Both options provide safe and stable environments ideal for learning the basics.
  5. Fifth, Minecraft runs using Java. Before setting up your server, you’ll want to make sure you have the latest version of Java installed. You can download it from Java’s official website. If you are not sure if you have Java or which version you have, you can check by opening the command window and using the command java -version. If Java is installed, this query will return a version number. By comparing this number against the most recent version listed on Java’s site, you can ensure that your version is current.
  6. Finally, keep your server secure from the start. It’s easier to prevent access from unauthorized users than it is to remove access once they’re already in. Install updates as they are released. By keeping your system up-to-date, you stand a better chance of closing loopholes before they become exploited.

Setting Up Your Minecraft Server

Image of a man building a server

Don’t worry, the above image is intentionally misleading. You won’t need any power tools to set up your server, assuming you’re not building it from scratch.

A Minecraft server doesn’t have to be on a top-of-the-line machine.

However, before you can set up your Minecraft server, you will need the following:

  1. A copy of Java Minecraft, which can be purchased through Minecraft’s official website
  2. The latest version of the Minecraft Multiplayer Server
  3. OpenJDK (an open-source implementation of Java): installation instructions for OpenJDK can be found on their official website

Now it’s time to setup your server. Follow these steps to get your server up and running:

  1. Open your terminal and enter the command mkdir Minecraft_Server. This creates a directory specific to your Minecraft server.
  2. Next you’ll want to place your recently downloaded server.jar into your newly created directory.
  3. Enter the command ls to list out your directories.
  4. Use cd Minecraft_Server to change your current directory to your server’s designated folder.
  5. To launch the server, use the command java -Xms1G -Xmx1G -jar server.jar. Xms and Xmx represent the starting and maximum RAM respectively, and server.jar is the name of your Minecraft server’s version number. If you’re using Minecraft server.1.15.2.jar (current as of this articles publication), then your command should look something like this:

    java -Xms1024M -Xmx1024M -jar minecraft_server.1.15.2.jar

    If needed, additional information can be added to the end of this line. Use nogui if you want to start the server without its graphical user interface, or -o true to tell the server to run in online mode, only allowing access by authenticated users.
  6. After entering the command above, you should see the following output:

    [main/ERROR]: Failed to load properties from file: server.properties

    [main/WARN]: Failed to load eula.txt

    [main/INFO]: You need to agree to the EULA in order to run the server. Go to eula.txt for more info.
  7. If this is your first time running the server, an EULA (End User License Agreement) file should be generated. Before you are able to play, you must agree to the EULA. This can be done using your favorite text editor or through your command window using the following command: nano eula.txt.
  8. Once you’ve opened the text file, change the eula field from false to true: eula=true. This indicates that you’ve read and agreed to the license agreement.
  9. Now you can save the file and launch your server again. Failure to change this field within the eula.txt document will result in your server continuing to shut down immediately upon start up.

Creating a Startup Script

If you want to, you can run your server each time using the full command line featured above. Alternatively, it’s a good idea to create a script that will run the command for you instead.

  1. Start by creating a new document. You can name this document whatever you like, but for the sake of this article, lets name it server.sh.
  2. Within the new document, enter the following lines:

    #!/bin/sh

    java -Xms1024M -Xmx1024M -jar minecraft_server.1.14.4.jar
  3. Now that you’ve created your document, in the terminal, type chmod +x server.sh.
  4. Now, whenever you want to start your server, you can use the command ./server.sh to start it up and stop to stop it.
  5. Lastly, to make sure your server runs correctly without an SSH connection, it is advised to run your server from within a GNU Screen session. To do this, use the screen command before running your startup script. Assuming you’ve already agreed to the EULA, the console should begin generating the required configuration files automatically.

When you’re ready to begin playing on your new server, just follow these 4 easy steps:

  1. start by opening your Minecraft client and logging in.
  2. Select “Multiplayer” from the list on the home screen and click on “Add Server.”
  3. Create a name for your server, enter its IP Address into the appropriate form fields and click “Done” when you’re finished.
  4. Then, in order to play, just click “Join Server.”

Your server is now up and running. If you encounter any issues, have additional questions, or are looking to run your server through a different operating system, check the Minecraft Wiki. It contains a surplus of additional information you may find useful for your specific needs.

Customizing Your Minecraft Server

When your server.sh script is first run, a world is generated using the default set of variables. Let’s say though, that you want to create your own custom variables for the world on your server. After all, customization is probably what got you interested in hosting your own server in the first place.

So how do you do that? Easy.

Start by opening the server.properties file. Once open, you should see a long list of properties with numbers and true/false statements associated with them. By tweaking the variables in this list, you can control how the world on your server is generated.

For example, if you want a world where no monsters spawn, scroll down the list until you see the line spawn-monsters=true. Change the true to false. Now, until this value is changed back to its default setting, monsters won’t spawn in your world.

Pretty cool right?

For a full list of available variables and explanations of the parameters they control, check out this page of the Minecraft wiki. just keep in mind, in order for any changes to take effect, you’ll need to restart your server.

What if these options aren’t enough though? Maybe you’re interested in customizing your server beyond those variables intrinsic to the game. Doing this is quite possible, but requires the use of external modifications.

The internet is full of websites and videos listing the best available Minecraft mods. With so many options, it’s important to understand how each mod functions as well as any potential conflicts it may have with other mods. If you’re interested in adding mods to your server, a quick Google search should get you well on your way to doing just that.

Looking for a good starting point? For an extensive list of downloadable mods you can begin experimenting with, check out MINECRAFTMODS.com.

Image of the minecraftmods.com home screen featuring several popular Minecraft mods

Next Steps

So, your server is up and running, you’ve altered the default variables, and you’ve even added a few external mods. Now what?

Well, now that you know how to make a Minecraft server, it’s time for the fun part: enjoying the fruits of your labor. Unless you intend to play in an empty world though, you’ll need other players to join your server. These might be friends or possibly even strangers. Either way, if you want people to play on your server, you’ll need to offer them something unique.

Ultimately, what truly separates the best Minecraft servers from the rest is the community that supports them. Establishing guidelines for your community; hiring staff to police and enforce expectations; coming up with intriguing events that keep your players engaged. These are the things that will transform your server into something truly special. By posting videos online, either through Youtube or Twitch, you can even advertise your server, motivating new players to join.

A strong Minecraft server can even be profitable for its owner. Through the integration of membership fees or by selling unique cosmetic items, you can turn your digital world into a source of income. Some of the largest and most popular servers house thousands of players. By leveraging this the right way, they can rake in six figures each month.

Chances are you’ve still got a ways to go before you reach the level of these top-performing servers. After all, communities aren’t built overnight. Regardless, the fact remains that these Minecraft servers all started the same way. Someone took a chance and made the decision to host their own server.

Ultimately, what truly separates the best Minecraft servers from the rest is the community that supports them.

Now that your world is up and running too, where you go and what you do is entirely up to you.

Now it’s your turn!

Have a question about Minecraft servers or a specific story you’d like to share? Leave a comment in the section below.

If you found this article helpful, please be sure to share it on your favorite social media platforms, and remember to like us on Facebook!

 

– Written by Sean Kelly

 

Additional Links:

Looking for more information on Minecraft? Be sure to check out our comprehensive Minecraft Server Buying Guide.

When you’re ready to build your ideal Minecraft server, head over to our complete list of instant deployment and custom built dedicated servers. Need personalized help with your server build? Contact our sales team!

Searching for more great content? Interested in cPanel, Virtual Private Servers, or Colocation? Check out our recent posts for more news, guides, and industry insights!

 

11 thoughts on “How to Make a Great Minecraft Server”

  1. Excellent article! Very extensive and easy to follow.
    I’d like to add, minecraftservers is just one of many server list websites. Part of making a successful server is promoting it and getting players to join it. That ain’t gonna happen with a site like minecraftservers – Too many servers to compete with, a large portion of which are just dead offline ones. A great alternative IMHO is a newer, smaller site, which helps fresh servers rise to the top. A personal favorite of mine is https://minecraft.buzz – It’s extremely easy to use and it’s got a few very cool features and nice graphics!

  2. I found this article to be rather interesting as I used to be a Minecraft server owner and it was hard at first to gain a steady playerbase. I think one of the main factors is having a nice theme for your server that sets a part you and other 1000s of servers. On top of that having a nice banner and using the right minecraft server lists can be helpful if you are getting a decent amount of votes. I know there are many server lists out there but one I recently started to use is https://bestservers.com which is really user friendly and competes with other games to display the top 25 best game servers on the homepage. It is growing quite fast and love the creativity with the logo and website background they have!

  3. Hi there, I just read this article and I think something important to note is that the Minecraft server list that was in this article has servers pay them to be ranked higher up, meaning they really aren’t always the best servers. A popular server list that is not biased and strictly ranks the best servers based on votes is https://www.best-minecraft-servers.co/

    This Minecraft server list deserves more visitors then what it currently has since it stays non-biased and really ranks the best of the best servers.

  4. Hello, I just read this article and I think something imperative to note is that the Minecraft server list that was in this article has workers pay them to be positioned higher up, which means they truly aren’t generally the best servers. A famous server list that isn’t one-sided and carefully positions the best workers dependent on votes is https://mcservertime.com/

    This Minecraft server list merits more visitors then what it at present has since it stays non-one-sided and truly positions the most amazing aspect the best workers.

Leave a Comment

Your email address will not be published. Required fields are marked *

Related Articles

Informational

Top 5 Linux Server Distributions for 2024

Overview 2023 was an active year in the Linux world! Red Hat, the biggest open-source company decided to lock the source code behind a paywall, Ubuntu dropped default support for Flatpak for all its flavors, Vim creator, Bram Moolenar, passed away, and Linux rose above MacOS in gaming stats with …

Continue read
Informational

Linux: The Open-Source Solution – Benefits and Overview

Overview This blog post is intended to provide you with information and an overview of crucial topic points involving the Linux OS. Whether you are reviewing and contemplating which OS to use for your production environment or your desktop setup, the following seven topics will assist with understanding what Linux …

Continue read