restart console on Minecraft Server

If this is a linux vserver or root server, you can use the “screen” tool to access the minecraft console again.

  1. Create a new startup script (start.sh) in the server directory to launch the JAR: #!/bin/sh screen -d -m -S "minecraft_screen" java -Xmx1024M -Xms1024M -jar minecraft_server.1.15.2.jar nogui
  2. Open your terminal and execute the following in the directory:chmod +x start.sh
  3. Run your start up script:./start.sh

To access the minecraft screen use the command “screen -r”.

To leave the minecraft screen press Ctrl + A + D

Leave a Comment