Find us on social media
ForgeModsModpack4 min read
Install a modpack with Forge
Set up a Forge server, upload a modpack, allocate RAM and troubleshoot common issues.
What is Forge?
Minecraft Forge is a modding platform that lets you run mods on your server. Modpacks are curated collections of mods designed to work together.
Step 1: Install Forge on your server
- Go to panel.baires.host → select your server
- In the Startup tab, change the server type to Forge
- Select the Minecraft version that matches your modpack (e.g., 1.20.1)
- Click Reinstall Server to download the Forge jar
Alternatively, install manually:
bash
# Download Forge installer
wget https://maven.minecraftforge.net/net/minecraftforge/forge/1.20.1-47.2.0/forge-1.20.1-47.2.0-installer.jar
java -jar forge-1.20.1-47.2.0-installer.jar --installServerStep 2: Upload the modpack
- Download the server pack version of your modpack (not the client version)
- Stop your server in the panel
- Upload the server pack zip via Files or SFTP
- Extract the contents into the server root directory
- Make sure the
mods/folder contains all the mod.jarfiles
Step 3: Allocate RAM
Modpacks need more RAM than vanilla. In the Startup tab:
- Light modpacks (50-100 mods): 4-6 GB
- Medium modpacks (100-200 mods): 6-8 GB
- Heavy modpacks (200+ mods): 8-12 GB
Set both minimum and maximum heap size:
terminal
-Xms4G -Xmx8GStep 4: Start and verify
- Start the server from the Console tab
- First launch takes longer (Forge loads all mods)
- Watch for errors in the console
- Once you see
Done!, the server is ready
Troubleshooting
- Out of memory: Increase RAM allocation in Startup settings
- Mod conflict: Check
crash-reports/folder for the problematic mod - Version mismatch: Ensure ALL mods match the same Forge and MC version
- Missing dependency: Some mods require library mods (check mod pages)
Tips
- Always use the server pack, not the client pack
- Keep a list of installed mods and their versions
- Test mod updates on a backup before applying to production
- Players must have the same mods installed on their client
Was this guide helpful?