How to Install Fabric Loader on a Minecraft Server (2026)

Fabric is a lightweight, modern mod loader. It starts faster than Forge, uses less memory, and has a growing library of performance and gameplay mods. Here is how to install it on a server.
Requirements
- Java 17 or 21 (depending on Minecraft version)
- At least 3 GB RAM
- SSH or file access to server
Installation Steps
Step 1: Download the Installer
Go to fabricmc.net/use/installer and download the universal installer jar.
Step 2: Run the Installer
java -jar fabric-installer-*.jar server -mcversion 1.21.1 -downloadMinecraft
Replace 1.21.1 with your target Minecraft version.
This creates:
fabric-server-launch.jar(the server entry point)server.jar(vanilla Minecraft server)libraries/folder
Step 3: Accept EULA
echo "eula=true" > eula.txt
Step 4: Start the Server
java -Xms4G -Xmx4G -jar fabric-server-launch.jar nogui
Step 5: Install Fabric API
Almost every Fabric mod requires Fabric API:
- Download from Modrinth
- Place in the
mods/folder - Restart the server
Step 6: Add Mods
- Stop the server
- Download mods from Modrinth or CurseForge
- Place jars in the
mods/folder - Start the server
Recommended Server Mods
| Mod | Purpose | |-----|---------| | Fabric API | Required library | | Lithium | Game logic optimization | | Krypton | Network optimization | | FerriteCore | Memory reduction | | Carpet | Server utilities and tweaks | | Ledger | Block logging |
Fabric vs Paper
| Feature | Fabric | Paper | |---------|--------|-------| | Mod support | Yes | No (plugins only) | | Plugin support | Limited | Full | | Performance | Good + Lithium | Excellent built-in | | Startup time | Fast | Fast | | Vanilla parity | High | Modified (some mechanics changed) |
Choose Fabric for mods. Choose Paper for plugins and vanilla-like gameplay.
Troubleshooting
Missing Fabric API
Mod requires fabric-api
Download and install Fabric API in the mods folder.
Version Mismatch
Every mod must match your Minecraft version. A mod for 1.20.4 will not work on 1.21.1.
Server Crashes
Check logs/latest.log. Remove the last mod you added and restart. Binary search for the conflicting mod.
Host your Fabric server. View Minecraft Hosting Plans
