04-13-2017, 11:36 PM
I recommend using Cuberite together with screen or tmux. This ensures that the server keeps running when you exit putty, and you can access the console later.
These are the commands I use for my server:
To start the server:
If the server crashes, it will start again automatically.
To access the console, use
To exit the console, hold CTRL and A, release them, and press D.
These are the commands I use for my server:
To start the server:
Code:
screen -dmS server sh -c 'while true; do sleep 1; cd $HOME/Server; ./Cuberite && break; done'
To access the console, use
Code:
screen -r server
To exit the console, hold CTRL and A, release them, and press D.