SpaceCore WIKI
English
English
  • Personal Account and Registration
    • Account registration
    • «Customer» section
    • «Finance» section
    • Account Verification (KYC)
  • Customer service
    • How do I place an order?
    • How to contact support?
    • The Game Hosting panel
    • Setting Up BILLmanager 6 for Reselling
  • Communications
    • Notifications in Telegram
    • Web Hosting Notifications
    • Using a ping bot in Telegram
  • Information board
    • Blocked ports (VPS/VDS)
    • What is IOPS?
    • VAT for the EU and UK
  • VPS and Dedicated Servers
    • How to use VPS/VDS?
    • Changing the Password for VDS
  • OS and software configuration
    • Java [Linux]
    • Screen
    • Linux Password Recovery
    • Connecting via SSH keys
    • Disabling access to Linux using a password
    • Deploying MikroTik RouterOS on VDS
  • AI
    • Deploying DeepSeek on your server in just a few clicks
  • Windows
    • RDP connection
    • Configuring the RDP connection
    • Changing the password
    • Installation via QEMU
    • How to add an IPv4
    • Download files
    • Bruteforce Windows
  • Network Setup and Security
    • No interaction with private networks
    • Working with TCPDump
    • Change MTU Value
    • Configure IPTables
    • [DNS] Temporary failure resolving...
    • Network Speed Measurement [SpeedTest]
    • How do I buy a domain name?
    • How do I direct my domain to an IP address?
    • How to Protect Your Server? Basics of Cybersecurity
  • VPN and Privacy
    • WireGuard VPN [Easy]
    • OpenVPN [Easy]
    • Outline VPN Installation
    • Installing TorrServer
    • Installing 3X UI
    • Installing Marzban
    • Proxy for Specific Websites (V2RayN)
    • Use Nekoray
  • System monitoring
    • Traffic monitoring via VnStat
    • How to use the MTR tool
    • Getting Serial Numbers of Drives
  • Administration and Backups
    • Working with FTP Repository
    • Auto-shipment of backups
    • Installing an FTP Server
    • Mounting Linux Drives
  • Web development
    • Installing Apache2
    • Installing Nginx
    • Installing PHP
    • Installing MySQL
    • Installing PhpMyAdmin
    • Let's Encrypt SSL Generation
  • Minecraft
    • Installing Minecraft Java Server
    • Installing the Minecraft Bedrock/PE server
    • Installing the BungeeCord server
    • Installing Sponge Forge 1.12.2 Kernel
    • Configuring server.properties
    • Installing the icon on the server
    • Launch Options
    • Installing a resource pack on the server
  • Hetzner Servers
    • Control Panel
    • Password change via Rescue
    • Installing the operating system
  • 🇩🇪Contabo
    • The Control Panel
    • Disk space expansion
Powered by GitBook
On this page
  • Initial information
  • Uploading server files
  • Linux console
  • FileZilla
  • Starting the server
  • Connecting to the server
  • Windows 10 Edition
  • Pocket Edition
PreviousInstalling Minecraft Java ServerNextInstalling the BungeeCord server

Last updated 12 months ago

Previously, we published an article on the topic of creating a Minecraft Java server. This time we will look at the installation process of the Minecraft Bedrock/Pocket Edition server.

Initial information

The installation will be carried out on Ubuntu 20.04 LTS OS, so the instructions are suitable for both VDS and Dedicated Server.

The Screen utility will also help us in working with the server; we recommend reading the article:

In turn, Minecraft Bedrock does not require Java installation on both the server and the client side. This is all because this version of the game is entirely written in C++.

Uploading server files

We update the lists of packages and system repositories:

sudo apt-get -y update && sudo apt-get -y dist-upgrade

We will show two methods on how to download server files entirely through the Linux system console, as well as manually through FileZilla software.

Linux console

First, we need to create a folder for the future server. Go to any directory of interest (standard - root) and use the command:

mkdir minecraftbedrock

minecraft bedrock - is the name of the directory to be created, here you can specify any value.

We can use a special command to check all the files in a directory, thereby making sure that the folder is created.

ls

We see the created directory. We switch to it using the command

cd minecraftbedrock

Next, we will use the wget utility to download server files.

wget https://minecraft.azureedge.net/bin-linux/bedrock-server-1.16.221.01.zip

That's it, the archive with the files has been uploaded.

Now we need to unpack it. Install the zip utility:

apt-get install zip

Use the command to unpack the archive:

unzip bedrock-server-1.16.221.01.zip

Where bedrock-server is 1.16.221.01.zip is the name of our archive.

FileZilla

We connect to the server and create a directory in any folder (PCM — Create a directory).

You can use any name.

Go to the created directory. Download the archive from the Mojang website to your computer:

We are sending the downloaded file to our server.

The archive has been uploaded successfully.

Log in to the Linux console (SSH), then use the command to go to our directory:

cd bedrock

bedrock - is the catalog name.

Next, use the command to unpack the archive:

unzip bedrock-server-1.16.221.01.zip

Where bedrock-server-1.16.221.01.zip is the name of our archive.

Starting the server

For round-the-clock operation of the server, we create a Screen window with the command

screen -S bedrock

bedrock is the name of the screen window.

Still in the directory of our server we use command

chmod 777 bedrock_server

Thus, we grant full rights to write, read and execute the file.

Next we go to the start of the server itself. We use the command

./bedrock_server

bedrock_server - is the name of the server startup file.

Great! Our server has been successfully launched.

Use the Ctrl + A + D key combination to exit the Screen window.

Connecting to the server

Let's try to log in from both versions of the game.

Windows 10 Edition

We add the server, specifying the name, IP address and standard port.

We have successfully connected to the server.

The console also displays information about the connection and exit of players from the server:

Pocket Edition

We re-enter the data for the connection.

The server is still running in the pocket version.

Screen Installation
https://minecraft.azureedge.net/bin-linux/bedrock-server-1.16.221.01.zip