How to make a Minecraft Bedrock gaming server on Amazon Lightsail

In this tutorial, I will walkthrough the setup of a Minecraft Bedrock gaming server on Amazon Lightsail using the Ubuntu Instance Blueprint. This will allow you to use iOS, Android and Windows Minecraft clients to connect to this server for gaming.

Steps:

  1. Start with selecting an Instance Location
  2. For the instance image, select Linux/Unix Blueprint
  3. Select OS Only and select Ubuntu 20.04 (or the latest version currently available)
  4. In the Optional section, Click on Add launch script and paste the following snippet of commands.
apt-get update
apt-get install -y unzip
cd /home/ubuntu
wget 'https://minecraft.azureedge.net/bin-linux/bedrock-server-1.17.41.01.zip'
unzip bedrock-server-1.17.41.01.zip -d /home/ubuntu
echo "LD_LIBRARY_PATH=. ./bedrock_server" > run.sh
chmod +x run.sh
apt-get -y upgrade

The above commands will run on the initial server provisioning using the Launch script feature of Lightsail.

  1. Once you have server running, click on Server, then Networking
  2. Add Static IP Address
  3. Go back to the Server/Instance dashboard, then Networking
  4. Add Firewall port of 19132 for IPv4
  5. Disable IPv6
  6. SSH into server using the Web Based SSH Client
  7. To start your Minecraft Bedrock server type following command
./run.sh
  1. To run the Bedrock server in the background type the following command:
nohup ./run.sh &

All videos tutorials on the website as well as the YouTube channel aim to provide a simplified process for a specific scenario; there could be many different factors and unique use cases you may have. The tutorials may not cover every situation; so treat is as a starting point or learning concept to apply to your unique situations, and consider this inspiration but not prescription or explicit direction.

Scroll to Top