Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ To reboot **do not** use traditional Linux commands. You must use:

### Important Note: First Boot

On first boot, your Minecraft Server will generate the world. This can take around 10 minutes, so hang tight while this happens, and then connect to your Minecraft Server's IP address from Minecraft Java as soon as it is ready. You can tail the log file if you'd like to see the progress, or sipmly retry connecting via Minecraft Java after a few minutes.
On first boot, your Minecraft Server will generate the world. This can take around 10 minutes, so hang tight while this happens, and then connect to your Minecraft Server's IP address from Minecraft Java as soon as it is ready. You can tail the log file if you'd like to see the progress, or simply retry connecting via Minecraft Java after a few minutes.


Post-Install
Expand Down
8 changes: 6 additions & 2 deletions install
Original file line number Diff line number Diff line change
Expand Up @@ -1219,9 +1219,13 @@ stop)
status)
user=$(whoami); if [ $user != "'${user}'" ]; then echo "Cannot run as ${user} - expecting '${user}'"; exit; fi
if screen -ls | grep -q Pinecraft; then
echo 1
echo "Minecraft server is Online! Join through: "
hostname -I | awk '{print $1}'
echo "To stop server use '~/minecraft/stop'"
echo "To reboot server use 'sudo ~/minecraft/reboot'"
else
echo 0
echo "Minecraft server is Offline."
echo "To start server use '~/minecraft/server'"
fi
;;

Expand Down