HOW ONE CAN SETUP A MINECRAFT SERVER ON UBUNTU 14 - GLOBO.TECH


Minecraft servers are designed for cooperative play with different gamers online or by a local space community (LAN) connection. These servers can run on your hosted server, native devoted hardware server, local gaming computer, or digital personal server hosted on a private machine.


Every Minecraft server requires default software supplied by Mojang, which functions on Windows, Mac OS X, or Unix-primarily based techniques. Moreover, MCPROFILE affords different server options, together with LAN servers, exterior server shoppers, a rented server, and completely different realms that may vary.


With the intention to follow this guide you will need to have the next in place:
• One node (Cloud Server or Dedicated Server) that has Ubuntu 14.04 LTS put in.
• SSH Root Entry to your server


Tutorial


Server Configuration


To begin, you could confirm that your server is at the moment up to date:
apt-get replace && apt-get upgrade -y
After confirming that your server is present, checking that the latest model of Java has been installed is subsequent:
java -model


If it’s confirmed that the most recent version of Java is just not put in, you could receive a warning stating “The program ‘Java’ could be found in the following packages.” If that is the case, you have to to install Java by means of the next command (confirming with the Enter/Return key when prompted):
add-apt-repository ppa:openjdk-r/ppa
apt-get update
apt-get install openjdk-8-jdk -y


During setup, additionally, you will need to put in a display screen package that may allow your server to proceed operating, no matter your ssh connection status:
apt-get install screen -y


Installing Minecraft


To start, you will establish a folder in your /residence path:
mkdir /home/minecraft ; cd /home/minecraft


Following that, you will obtain the present model of the server software from Mojang:
wget -O minecraft_server.jar https://s3.amazonaws.com/Minecraft.Download/variations/1.12.1/minecraft_server.1.12.1.jar


Once the download has completed, you can start the server working as a daemon:
screen -S "Minecraft"


At this point, you have almost completed setting up your server for Minecraft, however you'll need to simply accept and confirm that the top User License Settlement (EULA) has been accepted as true. We encourage you to learn through the EULA entirely earlier than accepting it.


After you’ve learn via the EULA, you'll want to create a text file, called eula.txt, to set it as true:
contact eula.txt
echo "eula=TRUE" > eula.txt


Now that you've got completed studying the EULA and accepted it, you can begin your new server:
java -Xmx1024M -Xms1024M -jar minecraft_server.jar nogui


As your server begins, you will observe the following in your console window:
root@globotech-minecraftserver-ubuntu14:/dwelling/minecraft# java -Xmx1024M -Xms1024M -jar minecraft_server.jar nogui
[15:12:05] [Server thread/Info]: Starting minecraft server version 1.12.1
[15:12:05] [Server thread/Data]: Loading properties
[15:12:05] [Server thread/WARN]: server.properties does not exist
[15:12:05] [Server thread/Data]: Generating new properties file
[15:12:05] [Server thread/Info]: Default sport type: SURVIVAL
[15:12:05] [Server thread/Data]: Producing keypair
[15:12:06] [Server thread/Info]: Beginning Minecraft server on *:25565
[15:12:06] [Server thread/Data]: Utilizing epoll channel type
[15:12:06] [Server thread/Data]: Getting ready level "world"
[15:12:06] [Server thread/Information]: Loaded 488 advancements
[15:12:07] [Server thread/Data]: Getting ready begin region for stage zero
[15:12:08] [Server thread/Data]: Getting ready spawn space: 7%
[15:12:09] [Server thread/Info]: Preparing spawn space: 14%
[15:12:10] [Server thread/Info]: Preparing spawn area: 23%
[15:12:11] [Server thread/Information]: Preparing spawn area: 31%
[15:12:12] [Server thread/Information]: Preparing spawn area: 37%
[15:12:13] [Server thread/Info]: Getting ready spawn space: 46%
[15:12:14] [Server thread/Info]: Preparing spawn space: 54%
[15:12:15] [Server thread/Data]: Preparing spawn area: 63%
[15:12:16] [Server thread/Data]: Making ready spawn area: 73%
[15:12:17] [Server thread/Information]: Making ready spawn area: 84%
[15:12:18] [Server thread/Information]: Preparing spawn area: 94%
[15:12:19] [Server thread/Information]: Accomplished (12.866s)! For assist, type "help" or "?"


Congratulations! You’ve finished organising your new Minecraft gaming server on Ubuntu 14.04, and you may exit the screen by hitting CTRL + a + d. If you happen to select to reattach the display screen, you'll be able to accomplish that in the following manner:
display -R


If necessary, you can edit your server’s configuration by way of the next path:
nano /dwelling/minecraft/server.properties


Your Minecraft server setup is full, and you’re ready to begin using the server for LAN or on-line gameplay in cooperative mode. In case you found this setup information useful, please share it with others looking to setup their recreation server.


Created: 18/07/2022 12:08:57
Page views: 59
CREATE NEW PAGE