One Server.
Any Platform.

Strata unifies the Minecraft ecosystem. A simple RPM package bringing PaperMC stability and Geyser connectivity. Play on PC, PS5, Android, and iOS in the same world.

root@server:~
# 1. Configure repository
$ sudo dnf localinstall -y https://rpm.rda.run/repo.rpm
# 2. Install Strata
$ sudo dnf install strata

What's Included

Everything you need to run a hybrid Minecraft server, expertly configured and ready to go.

PaperMC

Optimized Spigot fork with better performance and stability.

Geyser

Translates Bedrock protocol to Java for cross-platform play.

Floodgate

Allows Bedrock players to join without a Java account.

BlueMap

Interactive 3D web-based world map visualization.

Installation

Compatible with AlmaLinux 10, RHEL 10, and Fedora 41+. Requires Java 25 (auto-installed).

Terminal
# 1. Add rda.run repository config
sudo dnf localinstall -y https://rpm.rda.run/repo.rpm

# 2. Install the package
sudo dnf install strata

# 3. Start the service
sudo systemctl enable --now strata

# 4. View logs
sudo journalctl -u strata -f

Required Ports

25565
TCP • Java Edition
19132
UDP • Bedrock Edition
8100
TCP • BlueMap Web
Firewall Configuration
sudo firewall-cmd --permanent --add-port=25565/tcp
sudo firewall-cmd --permanent --add-port=19132/udp
sudo firewall-cmd --permanent --add-port=8100/tcp
sudo firewall-cmd --reload

How to Connect

Step-by-step guides for connecting from any platform.

PC (Java Edition)

No subscription required
  1. Open Minecraft Java Edition
  2. Click MultiplayerAdd Server
  3. Enter server address: your-ip:25565
  4. Click Done and connect

Android

No subscription required
  1. Open Minecraft
  2. Tap PlayServers
  3. Scroll down, tap Add Server
  4. Enter address: your-ip, port: 19132

iOS (iPhone/iPad)

No subscription required
  1. Open Minecraft
  2. Tap PlayServers
  3. Scroll down, tap Add Server
  4. Enter address: your-ip, port: 19132

Windows 10/11 (Bedrock)

No subscription required
  1. Open Minecraft for Windows
  2. Click PlayServers
  3. Scroll down, click Add Server
  4. Enter address: your-ip, port: 19132

PlayStation 4/5

PS Plus required
  1. Go to SettingsNetworkSet Up Internet Connection
  2. Choose Custom, set DNS to Manual
  3. Primary: 104.238.130.180, Secondary: 8.8.8.8
  4. Open Minecraft, connect to any Featured Server
  5. Enter your server IP when prompted

Xbox Series X/S, One

Game Pass Core required
  1. Go to SettingsNetwork settingsAdvanced
  2. Select DNS settingsManual
  3. Primary: 104.238.130.180, Secondary: 8.8.8.8
  4. Follow PlayStation steps to connect

Nintendo Switch

Switch Online required
  1. Go to System SettingsInternet
  2. Select your network → Change Settings
  3. DNS: Primary 104.238.130.180, Secondary 8.8.8.8
  4. Follow PlayStation steps to connect

Why DNS for Consoles?

Microsoft/Mojang restricts Minecraft Bedrock on consoles to only connect to "Featured Servers". BedrockConnect is an open-source DNS server that intercepts these connections and allows you to enter any server IP.

DNS: 104.238.130.180
BedrockConnect Project

BlueMap Setup

Interactive 3D web-based world map visualization.

First-Time Setup Required

BlueMap requires manual activation on first run. It needs to download assets from Mojang, and you must accept this before it will start.

1

Start the server first

BlueMap will generate config files but won't start yet.

2

Edit the core configuration

sudo -u minecraft vim /opt/minecraft/server/plugins/BlueMap/core.conf
3

Change accept-download to true

accept-download: true
4

Restart the server

sudo systemctl restart strata
5

Access the map

http://your-ip:8100
3D Navigation
Zoom In/Out
Player Markers
Building View

Configuration

Useful commands and important settings for your server.

File Structure

/opt/minecraft/server/
├── paper.jar                    # PaperMC server
├── eula.txt                     # Accepted EULA
├── start.sh                     # Startup script
├── server.properties            # Server configuration
├── plugins/
│   ├── Geyser-Spigot.jar       # Geyser plugin
│   ├── Floodgate-Spigot.jar    # Floodgate plugin
│   └── BlueMap.jar             # BlueMap plugin
└── world/                       # World data

Useful Commands

Server Management
# Server status
sudo systemctl status strata

# Stop the server
sudo systemctl stop strata

# Restart the server
sudo systemctl restart strata

# View logs
sudo journalctl -u strata -f

# Server console (screen)
sudo -u minecraft screen -r minecraft
# To exit console: Ctrl+A, then D

Important Settings

RAM Memory

Edit /opt/minecraft/server/start.sh to adjust memory:

java -Xms2G -Xmx4G -jar paper.jar nogui

server.properties

Main settings in /opt/minecraft/server/server.properties:

# Server name shown in server list
motd=My Strata Server

# Maximum number of players
max-players=20

# Game mode (survival, creative, adventure, spectator)
gamemode=survival

# Difficulty (peaceful, easy, normal, hard)
difficulty=normal

# PvP
pvp=true

Required for Geyser/Floodgate

For Bedrock players to connect properly, ensure these settings:

# Disable secure profile requirement (required for Bedrock)
enforce-secure-profile=false

# Keep online-mode enabled (Java players authenticate with Mojang)
online-mode=true

Useful Links