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.
nano
and vim
are fine).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 -y
Create a new directory for the server.
cd ~
mkdir Glowstone
cd Glowstone
Download Glowstone from the repository.
wget https://circleci.com/api/v1.1/project/github/GlowstoneMC/Glowstone/latest/artifacts/0/%24CIRCLE_ARTIFACTS/glowstone.jar
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 Enter
or Return
key.
Set the appropriate permissions on glowstone.jar
.
chmod 755 glowstone.jar
Open a screen session for Glowstone.
screen -S 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.
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!