Beginner6 minUpdated: 2026-09-13

Bedrock Server Setup: For Phone, Console and Windows Players

Set up the official Bedrock server, configure server.properties, invite friends, and understand how it differs from a Java server.

Verified against

Bedrock Dedicated Server
1.21.x
Protocol
UDP
Last checked
2026-09-13

Before you start

  • A Minecraft service using the Bedrock engine
  • The service IP and UDP port
  • Players running the same Minecraft version as the server
On This Page
All Guides
Reading progress

Bedrock is the edition that runs on phones, tablets, Windows 10/11 and consoles. Although it looks like the same game as Java, it uses entirely separate server software: behavior packs instead of plugins, UDP instead of TCP, a compiled binary instead of a jar. Knowing these differences saves the hours usually lost trying to apply Java guides to Bedrock.

Java EditionBedrock Edition
Protocol / portTCP 25565UDP 19132
ExtensionsPlugins (.jar) and modsBehavior / resource packs
Common server softwarePaper, Purpur, FabricOfficial Bedrock Dedicated Server
PermissionsPlugins such as LuckPermsA permissions.json file
Version toleranceUsually flexible (ViaVersion)Strict: client and server must match

server.properties: the basics#

server.properties
server-name=Arkadas Sunucusu
gamemode=survival
difficulty=easy

# Yalnizca Xbox hesabi dogrulanmis oyuncular girebilir.
# Kapatmak, sunucunuzu herkese acik hale getirir.
online-mode=true

# allow-list=true yaptiginizda yalnizca allowlist.json'daki
# oyuncular baglanabilir; kucuk arkadas sunuculari icin en guvenli yol.
allow-list=true

max-players=10
# Gorus mesafesi mobil cihazlari da zorlar; 10-12 makul bir baslangictir.
view-distance=10

Inviting your friends#

1

Get the player's Xbox gamertag

On Bedrock, players are identified by their Xbox account. Ask for the exact gamertag, not the display name shown in-game.

2

Add them to the allow list from the console

Type the command below in the panel console. It works even if the player has never connected before.

Panel konsolu
allowlist add OyuncuGamertag
allowlist reload
allowlist list
3

Share the server address

The player goes to Play > Servers > Add Server in Minecraft and enters the IP and UDP port shown in the panel. They must not leave the port field empty; the default 19132 is usually not correct.

Troubleshooting

Symptom

Server not found / Unable to connect to world

Cause

The wrong port was entered, or the player's game version differs from the server's.

Fix

Have them enter the exact port shown in the panel and compare both versions.

Symptom

Connects on console but not on phone

Cause

Some mobile carriers restrict high-numbered UDP ports.

Fix

Ask the player to try over Wi-Fi; if it persists, request a different port allocation.

Symptom

Player is on the allow list but cannot join

Cause

The gamertag is misspelled, or allowlist reload was never run.

Fix

Verify with allowlist list; gamertags are not case sensitive but spaces matter.

Frequently Asked Questions

Can Java and Bedrock players share one server?

Not directly. You need Geyser and Floodgate on the Java side; Geyser translates Bedrock packets into the Java protocol. The Velocity and Geyser guide covers that setup step by step.

Can I install plugins on a Bedrock server?

Not in the Java sense. The official server is extended through behavior packs and the script API, which is far more limited than the plugin ecosystem. If plugins are a hard requirement, a Java + Geyser setup fits better.

Was this guide helpful?

Feedback goes straight to the team that maintains this guide.

Related Guides