Back to all guides
Factorio Guidemodspluginsconfiguration

How to Install Mods on a Factorio Server

Step-by-step instructions on uploading and enabling Factorio mods on your server.

# How to Install Mods on Factorio Server Factorio is famous for its massive modding scene. Adding mods to your server allows you to change recipes, add machines, or play full overhaul packs like Space Age. ## Steps to Install Mods - Go to the [Factorio Mod Portal](https://mods.factorio.com/) and find the mods you want. - Download the `.zip` file for the mod. - Open the [Lobby Maker File Manager](/my-game-servers) for your server. - Navigate to the `mods/` directory. If it doesn't exist, create it. - Upload your downloaded mod `.zip` files into the `mods/` folder. - Restart your server. > [!NOTE] > Ensure that the mod versions match the exact Factorio server version you are running. If there is a mismatch, the server will fail to start. ## Mod List Configuration When you upload mods, Factorio automatically creates a `mod-list.json` file. You can edit this file to enable or disable specific mods: ```json { "mods": [ { "name": "base", "enabled": true }, { "name": "space-exploration", "enabled": true } ] } ``` > [!TIP] > Players joining the server must have the exact same list of enabled mods. Factorio will prompt joining players to sync and download the mods automatically when they connect.