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 CentOS 6.
CentOS 6.
A text editor nano and vim are fine.
Java.
Screen (used to keep the server running in the background).
As mentioned previously, Glowstone is simple. This installation will require minimal work.
Install the necessary packages to run Glowstone (binaries for Java and screen):
yum install java screen -yCreate a new directory for the server.
cd ~
mkdir Glowstone
cd GlowstoneDownload Glowstone from the repository.
wget https://circleci.com/api/v1.1/project/github/GlowstoneMC/Glowstone/latest/artifacts/0/%24CIRCLE_ARTIFACTS/glowstone.jarCreate the startup file. We need to create this to set the amount of RAM the server will allocate and use.
nano start.shIn 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.jarYou may change the 512M to the desired amount of RAM.
Exit and save. With nanoYou’ll need to hold CTRL and O at the same time. Once you’ve done this, simply press the Enter or Return key.
Set the appropriate permissions on glowstone.jar.
chmod 755 glowstone.jarOpen a screen session for Glowstone.
screen -S GlowstoneStart the server:
./start.shAt this point, you can stay in the console or choose to exit by pressing CTRL, A, and D simultaneously.
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:25565Uninstalling is also possible. Simply stop the server, remove the Glowstone folder, and uninstall Java. For example:
cd ~
rm -rf Glowstone
yum -y remove javaHave fun!