How to set up GeyserMC (Java/Bedrock crossplay) on OuiPanel
Estimated time: 15-20 minutes
Difficulty: Intermediate ââ
Prerequisites: Minecraft Java server (Paper/Spigot), available additional port
đ Introduction
GeyserMC is a plugin that allows Minecraft Bedrock Edition players to join your Minecraft Java Edition server. It acts as a translator between the two game versions, enabling true crossplay across all platforms.
Supported Platforms
| Platform | Support |
|---|---|
| đ„ïž Windows 10/11 (Bedrock) | â Full |
| đ± iOS (iPhone/iPad) | â Full |
| đ± Android | â Full |
| đź Xbox | â Full |
| đź Nintendo Switch | â Full |
| đź PlayStation 4/5 | â ïž Special configuration required |
| đ„ïž Java Edition | â Native (no need for Geyser) |
How does it work?
âââââââââââââââââââ âââââââââââââââââââ âââââââââââââââââââ
â Java Player ââââââ¶â ââââââ¶â â
â (PC) â â Server â â â
âââââââââââââââââââ â Minecraft â â World â
â Java â â Shared â
âââââââââââââââââââ â + â â â
â Bedrock Player ââââââ¶â GeyserMC ââââââ¶â â
â (Mobile/Console)â â (Translator) â â â
âââââââââââââââââââ âââââââââââââââââââ âââââââââââââââââââ
Geyser translates Bedrock data into Java data and vice versa, allowing both types of players to play together.
đ§© Required Components
| Plugin | Function | Required |
|---|---|---|
| GeyserMC | Translates Bedrock protocol â Java | â Yes |
| Floodgate | Allows Bedrock players to connect without a Java account | â Recommended |
| ViaVersion | Support for older Minecraft versions | â ïž Optional |
đĄ Without Floodgate, Bedrock players would need a Minecraft Java Edition account to connect, which is usually not practical.
âïž Prerequisites
Compatible Server Type
GeyserMC works with the following server types:
| Type | Support | Geyser File |
|---|---|---|
| Paper | â Recommended | Geyser-Spigot.jar |
| Spigot | â Full | Geyser-Spigot.jar |
| Purpur | â Full | Geyser-Spigot.jar |
| BungeeCord | â Full | Geyser-BungeeCord.jar |
| Velocity | â Full | Geyser-Velocity.jar |
| Fabric | â Full | Geyser-Fabric.jar |
| NeoForge | â Full | Geyser-NeoForge.jar |
| Vanilla | â Not supported | - |
â ïž Important: If you have a Vanilla server, you must first convert it to Paper or Spigot using the Version Manager.
Additional Port Requirement
GeyserMC requires an additional UDP port for Bedrock connections:
- Java Port:
25565(TCP) - for Java players - Bedrock Port:
19132(UDP) - for Bedrock players
đĄ On OuiPanel, you can add an additional port via Configuration â Port Management.
đ„ Step 1: Download the Plugins
Download GeyserMC
- Go to geysermc.org
- Click on Download
- Select the version corresponding to your server:
| Your server | File to download |
|---|---|
| Paper / Spigot / Purpur | Geyser-Spigot.jar |
| BungeeCord / Waterfall | Geyser-BungeeCord.jar |
| Velocity | Geyser-Velocity.jar |
| Fabric | Geyser-Fabric.jar |
| NeoForge | Geyser-NeoForge.jar |
Download Floodgate
- On geysermc.org, click on the Floodgate tab
- Download the version corresponding to your server:
| Your server | File to download |
|---|---|
| Paper / Spigot / Purpur | Floodgate-Spigot.jar |
| BungeeCord / Waterfall | Floodgate-BungeeCord.jar |
| Velocity | Floodgate-Velocity.jar |
| Fabric | Floodgate-Fabric.jar |
đ€ Step 2: Install the Plugins on OuiPanel
Upload the files
- Log in to OuiPanel
- Select your Minecraft server
- Go to the File Manager
- Navigate to the
pluginsfolder (ormodsfor Fabric) - Click on Upload and upload:
Geyser-Spigot.jarFloodgate-Spigot.jar

First Start
- Go to the Console
- Start the server
- Wait for complete loading
- Check that Geyser is loading correctly:
[INFO]: [Geyser-Spigot] Loading Geyser version X.X.X...
[INFO]: [Geyser-Spigot] Geyser is now ready to accept Bedrock connections!
[INFO]: [Floodgate] Floodgate has been enabled!
- Stop the server to configure
âïž Step 3: Configure a Bedrock Port
Add a port on OuiPanel
- Go to Configuration â Port Management (or Network)
- Click on Add a port
- Take note of the new assigned port (e.g.
19132or other) - Add a note: "Bedrock Port GeyserMC"

đĄ Note: The default Bedrock port is
19132, but OuiPanel may assign you a different port. Make sure to take note of it!
âïž Step 4: Configure GeyserMC
Access the configuration file
- In the File Manager, navigate to:
/plugins/Geyser-Spigot/config.yml - Click on the file to edit it
Bedrock port configuration
Find the bedrock: section and modify the port:
bedrock:
# The address Geyser listens on
address: 0.0.0.0
# The Bedrock port (change with your assigned port)
port: 19132
# Enable remote IP cloning
clone-remote-port: false
# MOTD displayed to Bedrock players
motd1: "My Minecraft Server"
motd2: "Crossplay Java & Bedrock!"
# Server name in the list
server-name: "My Server"
â ïž Important: Replace
19132with the port you obtained in the previous step!
Java connection configuration
Find the remote: section:
remote:
# The address of the Java server (usually localhost)
address: auto
# The Java server port
port: 25565
# Authentication type
auth-type: floodgate
| Parameter | Value | Explanation |
|---|---|---|
address | auto | Automatic detection (recommended) |
port | 25565 | Your Java server port |
auth-type | floodgate | Use Floodgate for authentication |
Important options
# Prefix for Bedrock players (avoids username conflicts)
floodgate-key-file: key.pem
# Allow commands from Bedrock
command-suggestions: true
# Display coordinates to Bedrock players
show-coordinates: true
# Enable debug mode (disable in production)
debug-mode: false
# Maximum number of displayed Bedrock players
max-players: 100
# Enable anonymous statistics
metrics:
enabled: true
Complete recommended configuration
Here is an optimized config.yml configuration:
bedrock:
address: 0.0.0.0
port: 19132 # Replace with your port!
clone-remote-port: false
motd1: "My Crossplay Server"
motd2: "Java & Bedrock together!"
server-name: "MyServer"
compression-level: 6
enable-proxy-protocol: false
remote:
address: auto
port: 25565
auth-type: floodgate
floodgate-key-file: key.pem
command-suggestions: true
passthrough-motd: true
passthrough-player-counts: true
legacy-ping-passthrough: false
max-players: 100
show-coordinates: true
emote-offhand-workaround: "disabled"
cache-images: 0
allow-custom-skulls: true
add-non-bedrock-items: true
above-bedrock-nether-building: false
force-resource-packs: true
xbox-achievements-enabled: false
âïž Step 5: Configure Floodgate
Access Floodgate configuration
- Navigate to:
/plugins/floodgate/config.yml - Open the file to edit it
Floodgate configuration
# Prefix added to Bedrock usernames (avoids conflicts)
username-prefix: "."
# Replace spaces in usernames (Bedrock usernames can have spaces)
replace-spaces: "_"
# Debug mode
debug-mode: false
# Player database configuration
player-link:
enabled: true
type: sqlite
đĄ Usernames prefix: With the prefix
., a Bedrock player named "Steve" will appear as.Steveon the server. This avoids conflicts if a Java player has the same username.
đ Step 6: Restart and Test
Restart the server
- Go to the OuiPanel Console
- Click on Start
- Wait for complete loading
Check the operation
In the console, you should see:
[INFO]: [Geyser-Spigot] Loading Geyser...
[INFO]: [Geyser-Spigot] Geyser version X.X.X
[INFO]: [Geyser-Spigot] Listening on /0.0.0.0:19132
[INFO]: [Geyser-Spigot] Geyser is now ready to accept Bedrock connections!
[INFO]: [Floodgate] Floodgate has been enabled!
Test the Bedrock connection
Use the command in the console:
geyser connectiontest IP:PORT
Example:
geyser connectiontest 123.456.789.0:19132
Expected result:
[Geyser] Connection test successful!
đ± Step 7: Connect Bedrock Players
Connection information
Bedrock players should use:
| Information | Value |
|---|---|
| Address | Your server's IP |
| Port | The configured Bedrock port (e.g. 19132) |
â ïž Important: The Bedrock port is different from the Java port!
Connection from Windows 10/11
- Launch Minecraft for Windows (Bedrock Edition)
- Click on Play â Servers â Add a server
- Fill in:
- Server Name: Whatever you want
- Server Address: Your server's IP
- Port: Your Bedrock port (e.g. 19132)
- Click Save
- Select the server and click Join
Connection from Mobile (iOS/Android)
- Launch Minecraft on your device
- Click on Play â Servers â Add a server
- Enter the address and port
- Save and join
Connection from Xbox
- On Xbox, custom servers are not directly accessible
- Solutions:
- Use the BedrockConnect application (DNS modification)
- Or use MC Server Connector from the Microsoft Store
DNS Method (BedrockConnect)
- On Xbox, go to Settings â Network â Advanced settings
- DNS settings â Manual
- Enter:
- Primary DNS:
104.238.130.180 - Secondary DNS:
8.8.8.8
- Primary DNS:
- Restart Minecraft
- In the Servers tab, click on a partner server
- A menu will appear to enter your server's IP
Connection from Nintendo Switch
Same method as Xbox:
- System settings â Internet â Internet settings
- Select your network â Modify settings
- DNS settings â Manual
- Main DNS:
104.238.130.180 - Follow the same steps as Xbox
Connection from PlayStation
â ïž Note: PlayStation is more restrictive. You must use a proxy application on your local network.
- Download BedrockConnect or Phantom on a PC on the same network
- Set up the proxy
- Change the DNS on your PlayStation to the proxy PC's IP
đ§ GeyserMC Commands
Console Commands
| Command | Description |
|---|---|
geyser reload | Reloads the configuration |
geyser version | Displays the Geyser version |
geyser dump | Generates a diagnostic report |
geyser statistics | Displays statistics |
geyser connectiontest IP:PORT | Tests the Bedrock connection |
geyser list | Lists connected Bedrock players |
Player (In-Game) Commands
| Command | Description |
|---|---|
/geyser help | Lists available commands |
/geyser offhand | Switches the offhand item |
/geyser advancements | Opens the advancements menu |
/geyser statistics | Opens the statistics menu |
/geyser settings | Geyser settings |
đ§ Troubleshooting
Bedrock players cannot connect
| Cause | Solution |
|---|---|
| Incorrect port | Check the port in config.yml and on OuiPanel |
| Port not open | Check in Port Management that the port is created |
| Wrong IP | Use the main server IP |
| Firewall | The port must be accessible via UDP |
Error "Unable to connect to world"
- Check that the server is started
- Check that Geyser is loaded (console logs)
- Test with
geyser connectiontest - Verify the port is correct
Error "Disconnected from server"
- Check
auth-type: floodgatein the Geyser config - Ensure Floodgate is installed and enabled
- Check that
key.pemexists in the Floodgate folder
Bedrock skins not displaying correctly
This is a known limitation. Solutions:
- Install the SkinsRestorer plugin for Java players
- Custom Bedrock skins do not work on Java
Chat issue (1.19.1+)
For versions 1.19.1 and above, you may need to:
- In
server.properties, add:enforce-secure-profile=false - Or install the NoEncryption / FreedomChat plugin
Error "Invalid credentials"
- Ensure
auth-typeis set tofloodgate - Restart the server
- Delete and recreate the
key.pemfiles
đ Crossplay Limitations
Differences between versions
| Feature | Java | Bedrock via Geyser |
|---|---|---|
| PvP Combos | â Native | â ïž Different |
| Redstone | â Full | â ïž Minor differences |
| Some blocks | â All | â ïž Different appearance |
| Commands | â All | â ïž Sometimes different syntax |
| F3 (Debug) | â Yes | â No |
| Mods | â If server is modded | â No |
What works well
- â Exploration and building
- â Survival and adventure
- â Basic mini-games
- â Chat and communication
- â Economy and standard plugins
Potential issues
- â ïž Competitive PvP (different mechanics)
- â ïž Complex piston/Redstone
- â ïž Some advanced plugins
- â ïž Custom resource packs
đĄ Best Practices
Server Configuration
| Practice | Reason |
|---|---|
| Use Floodgate | Avoids requiring a Java account |
Set a prefix (.) | Prevents username conflicts |
| Regular testing | Ensure crossplay functionality |
| Update Geyser | New features and fixes |
For Players
| Tip | Explanation |
|---|---|
| Use the same username | Facilitates identification |
| Report bugs | Helps improve the experience |
| Be patient | Some mechanics are different |
đ Summary
CONFIGURING GEYSERMC ON OUIPANEL:
1. PREREQUISITES
âââ Paper/Spigot/Purpur Server (not Vanilla)
âââ Additional available port
âââ Download Geyser + Floodgate
2. INSTALLATION
âââ Upload Geyser-Spigot.jar to /plugins/
âââ Upload Floodgate-Spigot.jar to /plugins/
âââ Start the server (generates configs)
âââ Stop to configure
3. PORT CONFIGURATION
âââ Configuration â Port Management
âââ Add a new port
âââ Note the assigned port (e.g., 19132)
4. GEYSER CONFIGURATION
âââ Edit /plugins/Geyser-Spigot/config.yml
âââ Modify port: YOUR_PORT
âââ Check auth-type: floodgate
âââ Save
5. BEDROCK CONNECTION
âââ Address: Server IP
âââ Port: Bedrock Port (different from Java!)
âââ Xbox/Switch: use DNS method
PORTS:
âââ Java: 25565 (or your main port)
âââ Bedrock: 19132 (or assigned port)
FILES:
âââ /plugins/Geyser-Spigot/config.yml
âââ /plugins/floodgate/config.yml
USEFUL COMMANDS:
âââ geyser connectiontest IP:PORT
âââ geyser reload
âââ geyser list
âââ geyser dump
đ Resources
| Resource | URL |
|---|---|
| GeyserMC Official Site | geysermc.org |
| GeyserMC Wiki | wiki.geysermc.org |
| GeyserMC Discord | discord.gg/geysermc |
| GeyserMC GitHub | github.com/GeyserMC |
Need a Minecraft server?
Discover our Minecraft hosting plans starting from $9.98/month with automatic mod installation.
