Find us on social media
FabricModsServer4 min read
Create a server with Fabric and mods
Install Fabric server, add mods, configure Fabric API and ensure mod compatibility.
What is Fabric?
Fabric is a lightweight modding platform for Minecraft. It's known for fast updates to new Minecraft versions, better performance than Forge, and a growing mod ecosystem.
Step 1: Install Fabric server
- Go to panel.baires.host → select your server
- In the Startup tab, change server type to Fabric
- Select your desired Minecraft version
- Click Reinstall Server
Or install manually:
bash
# Download Fabric installer
wget https://meta.fabricmc.net/v2/versions/installer
# Run installer
java -jar fabric-installer.jar server -mcversion 1.21.4 -downloadMinecraftStep 2: Install Fabric API
Fabric API is required by almost all Fabric mods:
- Download Fabric API from modrinth.com/mod/fabric-api
- Upload the
.jarto themods/folder via the panel
Important: Match the Fabric API version to your Minecraft version.
Step 3: Add mods
Download server-compatible mods from Modrinth or CurseForge:
- Go to Files →
mods/folder - Upload each mod
.jarfile - Restart the server
Essential performance mods
terminal
mods/
├── fabric-api.jar
├── lithium.jar # Server optimization
├── krypton.jar # Network optimization
├── starlight.jar # Lighting engine optimization
└── ferrite-core.jar # Memory optimizationStep 4: Verify mods loaded
Check the server console on startup:
terminal
[main/INFO]: Loading X mods
[main/INFO]: Loaded mod 'lithium' (lithium)
[main/INFO]: Loaded mod 'krypton' (krypton)Mod compatibility
Fabric mods must be:
- Built for the same Minecraft version as your server
- Built for Fabric (not Forge — they're incompatible)
- Server-side compatible (some mods are client-only)
Check the mod page for "Environment: Server" or "Environment: Both".
Configuration
Most Fabric mods create config files in the config/ folder:
terminal
config/
├── lithium.properties
├── krypton.toml
└── your-mod-config.jsonEdit these files and restart to apply changes.
Fabric vs Forge
| Feature | Fabric | Forge |
|---|---|---|
| Update speed | Very fast | Slower |
| Performance | Lighter | Heavier |
| Mod count | Growing | Larger (legacy) |
| Compatibility | Fabric-only mods | Forge-only mods |
Tips
- Start with performance mods (Lithium, Krypton, Starlight) for a better base
- Add gameplay mods one at a time and test between each
- Keep all mods on the same Minecraft version
- Fabric mods update faster to new MC versions than Forge mods
- Use Modrinth for the best Fabric mod discovery experience
- Back up your
mods/andconfig/folders before updating
Was this guide helpful?