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


Minecraft servers are designed for cooperative play with different gamers on-line or through an area space network (LAN) connection. These servers can run on your hosted server, native dedicated hardware server, local gaming pc, or virtual non-public server hosted on a personal machine.


Every Minecraft server requires default software offered by Mojang, which capabilities on Windows, Mac OS X, or Unix-based programs. Additionally, Mojang provides different server options, together with LAN servers, external server purchasers, a rented server, and different realms which will range.


With a view to follow this guide you might want to have the next in place:
• One node (Cloud Server or Dedicated Server) that has Ubuntu 14.04 LTS put in.
• SSH Root Access to your server


Tutorial


Server Configuration


To start, you want to verify that your server is at the moment updated:
apt-get replace && apt-get improve -y
After confirming that your server is present, checking that the most recent model of Java has been installed is next:
java -model


If it’s confirmed that the most recent version of Java is not installed, you may obtain a warning stating “The program ‘Java’ can be found in the next packages.” If this is the case, you will need to put in Java by the following command (confirming with the Enter/Return key when prompted):
add-apt-repository ppa:openjdk-r/ppa
apt-get update
apt-get set up openjdk-8-jdk -y


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


Installing Minecraft


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


Following that, you'll download the current model of the server software program 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:
display -S "Minecraft"


At this level, you've gotten nearly accomplished organising your server for Minecraft, but you will need to simply accept and confirm that the top User License Settlement (EULA) has been accepted as true. srazy's blog encourage you to read by the EULA solely before accepting it.


After you’ve read by means of the EULA, you will want to create a text file, known as eula.txt, to set it as true:
contact eula.txt
echo "eula=TRUE" > eula.txt


Now that you've finished reading 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 next in your console window:
root@globotech-minecraftserver-ubuntu14:/home/minecraft# java -Xmx1024M -Xms1024M -jar minecraft_server.jar nogui
[15:12:05] [Server thread/Information]: Starting minecraft server version 1.12.1
[15:12:05] [Server thread/Information]: Loading properties
[15:12:05] [Server thread/WARN]: server.properties doesn't exist
[15:12:05] [Server thread/Information]: Generating new properties file
[15:12:05] [Server thread/Information]: Default sport kind: SURVIVAL
[15:12:05] [Server thread/Data]: Generating keypair
[15:12:06] [Server thread/Info]: Starting Minecraft server on *:25565
[15:12:06] [Server thread/Data]: Utilizing epoll channel kind
[15:12:06] [Server thread/Info]: Getting ready degree "world"
[15:12:06] [Server thread/Data]: Loaded 488 advancements
[15:12:07] [Server thread/Data]: Getting ready start area for stage 0
[15:12:08] [Server thread/Info]: Preparing spawn area: 7%
[15:12:09] [Server thread/Data]: Making ready spawn space: 14%
[15:12:10] [Server thread/Data]: Making ready spawn space: 23%
[15:12:11] [Server thread/Data]: Making ready spawn area: 31%
[15:12:12] [Server thread/Info]: Getting ready spawn area: 37%
[15:12:13] [Server thread/Data]: Getting ready spawn area: 46%
[15:12:14] [Server thread/Information]: Preparing spawn area: 54%
[15:12:15] [Server thread/Data]: Making ready spawn space: 63%
[15:12:16] [Server thread/Information]: Making ready spawn space: 73%
[15:12:17] [Server thread/Data]: Getting ready spawn area: 84%
[15:12:18] [Server thread/Info]: Making ready spawn area: 94%
[15:12:19] [Server thread/Information]: Done (12.866s)! For help, type "assist" or "?"


Congratulations! You’ve finished setting up your new Minecraft gaming server on Ubuntu 14.04, and you'll exit the display by hitting CTRL + a + d. Should you select to reattach the display, you may achieve this in the following method:
display screen -R


If vital, you can edit your server’s configuration by means of the following path:
nano /home/minecraft/server.properties


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


Created: 28/06/2022 20:39:27
Page views: 30
CREATE NEW PAGE