Setup Guides·December 28, 2025·1 min read

How to Install a Forge Minecraft Server

Set up a Forge server for modded Minecraft. Download Forge, generate the server files, and install mods safely.

MCServerJars
Organization

Step 1: Download Forge

Download Forge

Forge is ideal for large modpacks and heavy modding. Make sure you download a Forge build that matches your Minecraft version.

Step 2: Generate Forge Server Files

If you are using the Forge installer, run:

java -jar forge-installer.jar --installServer

This creates the Forge server libraries and a run.bat/run.sh file.

If you downloaded a server jar directly, run it once to generate the folder structure.

Step 3: Start the Server

Use the generated run.bat/run.sh, or create your own start script:

java -Xms6G -Xmx6G -jar server.jar --nogui

Step 4: Install Mods

  1. Place mod .jar files in the mods folder
  2. Restart the server
  3. Install the same mods on your client

Client Mods Required

Players must install the exact same Forge mods and versions to join your server.

Forge vs Fabric

Forge supports the largest mod library, while Fabric focuses on lightweight, fast-updating mods. Compare them in Fabric vs Forge.

Continue Reading