How to Install Glowstone (Minecraft) on a CentOS 6 Server

Introduction

Glowstone is indubitably the most optimized server for Minecraft. The software boasts low memory usage, and uses significantly less CPU on your server.

Whether you are an avid player, or just trying to get a server up, the setup process is a breeze.

This article will cover the installation process for on CentOS 6.

Prerequisites

  • CentOS 6.
  • A text editor (nano and vim are fine).
  • Java.
  • Screen (used to keep the server running in the background).

Installation

As mentioned previously, Glowstone is simple. This installation will require minimal work.

Step 1: Install Packages

Install the necessary packages to run Glowstone (binaries for Java and screen):

yum install java screen -y

Step 2: Create Server Folder

Create a new directory for the server.

cd ~
mkdir Glowstone
cd Glowstone

Step 3: Download Glowstone

Download Glowstone from the repository.

wget https://circleci.com/api/v1.1/project/github/GlowstoneMC/Glowstone/latest/artifacts/0/%24CIRCLE_ARTIFACTS/glowstone.jar

Step 4: Create Setup File

Create the startup file. We need to create this to set the amount of RAM the server will allocate and use.

nano start.sh

In the step above, you may use any text editor. We'll be using nano for this tutorial.

Paste the following:

java -Xms512M -Xmx512M -jar glowstone.jar

You may change the 512M to the desired amount of RAM.

Exit and save. With nano, you'll need to hold CTRL and O at the same time. Once you've done this, simply press the Enteror Return key.

Step 5: Permissions Update

Set the appropriate permissions on glowstone.jar.

chmod 755 glowstone.jar

Step 6: Start Screen

Open a screen session for Glowstone.

screen -S Glowstone

Step 7: Launch Glowstone

Start the server:

./start.sh

At this point, you can stay in the console, or choose to exit by pressing CTRL , A, and D simultaneously.

Conclusion

Congratulations! Assuming that everything has worked, you now have a working Minecraft server. Connecting to it is like any other server; the IP you'll connect to should look like the following:

 203.0.113.230:25565

Uninstalling is also possible. Simply stop the server, remove the Glowstone folder, and uninstall Java. For example:

cd ~
rm -rf Glowstone
yum -y remove java

Have fun!

  • Server Apps, Minecraft, Linux Guides, Game Servers, CentOS
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Setup Ragnarok Online Server on Ubuntu 14.04 x64

In this article, we are going to setup a Ragnarok Online Server on Ubuntu 14.04 x64. You can be...

Setting up a Name Server for IPv6 rDNS in CentOS

Managing your own IPv6 rDNS is a fairly simple task. After setting up the name server, please...

Reset the Root Password in CentOS

If you have forgotten the root password it is possible to set a new one by interrupting the boot...

How to Install and Configure vsftpd on CentOS 7

FTP (File Transfer Protocol) is one of the most popular methods to upload files to a server....

How to enable EPEL repository?

The EPEL repository is an additional package repository that provides easy access to install...