How To Install Minecraft Server on Ubuntu 14.04

Install Minecraft Server on Ubuntu 14.04

In this tutorial, we will show you how to install the Minecraft server on Ubuntu 14.04. For those of you who didn’t know, Minecraft is a game about breaking and placing blocks. The creative and building aspects of Minecraft allow players to build constructions out of textured cubes in a 3D procedurally generated world. Minecraft servers allow players to play online or via a local area network with other people. They may either be run on a hosted server, on local dedicated server hardware, a Virtual Private server on a home machine, or on your local gaming computer.

This article assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo‘ to the commands to get root privileges. I will show you the step-by-step installation Minecraft server on Ubuntu 14.04.

Prerequisites

  • A server running one of the following operating systems: Ubuntu 14.04.
  • It’s recommended that you use a fresh OS install to prevent any potential issues.
  • SSH access to the server (or just open Terminal if you’re on a desktop).
  • A non-root sudo user or access to the root user. We recommend acting as a non-root sudo user, however, as you can harm your system if you’re not careful when acting as the root.

Install Minecraft Server on Ubuntu 14.04

Step 1. First, Install Java-JDK.

Add the webupd8team Java PPA repository to your system:

sudo add-apt-repository -y ppa:webupd8team/java

After adding the PPA, run the commands below one by one to install Java:

sudo apt-get update
sudo aptitude -y install oracle-java8-installer

Verify Installed Java Version:

java -version

Step 2. Create a Minecraft directory.

mkdir minecraft
cd minecraft

Step 3. Install and Configure Minecraft.

wget --no-check-certificate http://minecraft.net/download/minecraft_server.jar

Next, We have to grant minecraft_server.jar with the correct permissions for execution:

chmod +x minecraft_server.jar

You’ll now need to install “screen” to keep the Minecraft server running after the SSH session is closed:

sudo apt-get update && sudo apt-get install screen

Use the screen and run Minecraft:

screen

Startup Minecraft (you can edit the 1024M value to match your server’s RAM):

java -Xmx1024M -Xms1024M -jar minecraft_server.jar nogui

To get back to the normal screen, press these keys: Control+A+D, To get back to the screen where Minecraft is running:

screen -r

Congratulations! You have successfully installed the Minecraft Server. Thanks for using this tutorial for installing Minecraft Server on Ubuntu 14.04 system. For additional help or useful information, we recommend you check the official Minecraft website.

VPS Manage Service Offer
If you don’t have time to do all of this stuff, or if this is not your area of expertise, we offer a service to do “VPS Manage Service Offer”, starting from $10 (Paypal payment). Please contact us to get the best deal!

Save

r00t is a Linux Systems Administrator and open-source advocate with over ten years of hands-on experience in server infrastructure, system hardening, and performance tuning. Having worked across distributions such as Debian, Arch, RHEL, and Ubuntu, he brings real-world depth to every article published on this blog. r00t writes to bridge the gap between complex sysadmin concepts and practical, everyday application — whether you are configuring your first server or optimizing a production environment. Based in New York, US, he is a firm believer that knowledge, like open-source software, is best when shared freely. "Linux is not just an operating system. It is a philosophy — and the terminal is where that philosophy comes to life."

Related Posts