Skip to content

Scripts for setting up, running, maintaining and backing up a Minecraft Server on Linux Debian with screen as terminal.

License

Notifications You must be signed in to change notification settings

ChristianGeie/minecraft-server

 
 

Repository files navigation

minecraft-server

Scripts for a Minecraft Server on Linux Debian using screen.

This tutorial contains important steps if you would like to host a minecraft server from the command line.

software

In order for the Server to run we will need to install some packages: (please note: some of them could be installed already)
This command installs all packages you will need to run your server.

sudo apt install openjdk-17-jre-headless iputils-ping net-tools mailutils coreutils dnsutils sendmail screen grep nano wget less cron man sed pv

setup

Then, you can download and execute the setup script.

Download and make Executable

wget -O setup.sh https://raw.githubusercontent.com/simylein/minecraft-server/main/setup.sh && chmod +x setup.sh

This will start the script in interactive mode and you must answer questions

./setup.sh

If you like a straight one-liner which is non-interactive you may use the setup arguments like this

./setup.sh --name minecraft --proceed true --version 1.19.3 --port 25565 --eula true --remove true --start true

serverstart

Start your Server for the first time: ./start.sh

screen

Screen is an amazing command line tool that creates a "virtual" terminal inside your terminal.

You can view all your active screens by typing: screen -list
If you want to resume a certain screen session just type: screen -r ${servername}

If you would like to scroll inside a screen session press Ctrl+A and Esc (enter copy mode).
For returning back to normal press Esc.

To exit the screen terminal press Ctrl+A and Ctrl+D

server commands

Your minecraft server can understand certain commands.
I will explain some of them to you.

whitelist add ${playername} adding someone to your whitelist so he/she can join your server.
whitelist remove ${playername} remove someone to your whitelist so he/she can no longer join your server.
op ${playername} make someone admin on your server so he/she can execute commands.
deop ${playername} remove admin permissions for a player so he/she can no longer execute commands.
ban ${playername} ban someone from your server so he/she can no longer join your server.
pardon ${playername} pardon someone from your server so he/she can join your server.
tp ${playername} ${x} ${y} ${z} teleporting a player to cords.
tp ${playername} ${playername} teleporting a player to another player.

Important: If you do these commands ingame you will need to put a / before each command.
In the screen terminal you don't need a / before your command.

server.settings

This is your file that holds the variables you have chosen with the setup script.
If you know what your are doing feel free to edit it to suit your needs.

nano server.settings

Important settings are:

public= (ip of a wan server which will be pinged to ensure network availability)
private= (ip of a lan server which will be pinged to ensure network availability)

doHourly= (enables hourly backups)
doDaily= (enables daily backups)
doWeekly= (enables weekly backups)
doMonthly= (enables monthly backups)

diskSpaceError= (value in bytes for free disk space at which the backup script stops working)
diskSpaceWarning= (value in bytes for free disk space at which the backup script throws warnings)

server.properties

If you would like to customize your server further have a look at your server.properties file.

nano server.properties

Important settings are:

max-players= (limits the maximum amount of players on the server at the same time)
[Warning large numbers may impact performance]

difficulty= (defines ingame difficulty) [peaceful, easy, normal, hard]
gamemode= (default survival. Defines your game mode. For creative server replace with creative)
[survival/creative/adventure/spectator]

view-distance= (defines number of ingame chunks to be rendered)
[Warning large numbers may impact performance]
simulation-distance= (defines number of ingame chunks in which entities are computed)
[Warning large numbers may impact performance]

motd= (this will be displayed in the menu below your server - chose what you like)
pvp= (ability for player to do damage to each another) [true/false]

server-port= (default by 25565. Only important if you are dealing with multiple server)
[if you run multiple servers each server wants to have its own port]

white-list= (turns on the whitelist) [I would strongly recommend to set this to true]
spawn-protection= (the number of block at the worldspawn only operators can touch)

enable-command-block= (enables command blocks to tinker with) [true/false]

scripts

There are lots of script in your ${serverdirectory}. Normally, the executable ones are green and can be executed with:

./${scriptname}.sh ${arguments}

Example: ./start.sh --quiet
Example: ./stop.sh --now

Arguments: -h --help, -f --force, -n --now -q --quiet -v --verbose

The script name stands for the action the script will do.

start.sh (starts your server)
stop.sh (stops your server)
restart.sh (restarts your server)
update.sh (updates your server version)
restore.sh (restores the backup of your choice)
reset.sh (resets server world)
vent.sh (self-destructs your server along its backups)

crontab

If you would like to automate some of those task on your server you can create a crontab.

crontab -e

A new file will open (If you got one already the existing one will open)
Side note: the setup script will already put these lines in your crontab if you chose to do so.
In this file, you can automate things as follows:

First star: Minutes [0 - 59]
Second star: Hours [0 - 23]
Third star: Day of Month [0 - 31]
Forth star: Month [0 - 12]
Fifth star: Day of Week [0 - 6]

Generic Example: (In order to work, please replace the variables with your own ones)

# minecraft ${servername} your description of command here
* * * * * cd ${serverdirectory} && ${serverdirectory}/NameOfScript.sh

Close and save your crontab. (Press Ctrl X and Y)

logfiles

Your server will write two growing logfiles [screen.log and backup.log] (located in your ${serverdirectory})
screen.log contains everything that get's written inside your screen terminal while backup.log logs all action of the backup script.

to view them:

less screen.log
less backup.log

ending

I hope you learned something and that those scripts I provide may help you and your minecraft server experience.
Have fun and enjoy the Game ;^)

Best regards,
Simylein

About

Scripts for setting up, running, maintaining and backing up a Minecraft Server on Linux Debian with screen as terminal.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 100.0%