Streamlining Server Modding: Minecraft Forge without GUI
22nd August, 2022
Note: This tutorial assumes you have basic knowledge of managing Minecraft servers and working with mods. Backup your server files before proceeding, as modifying server files can be risky.
Obtain the Required Files:
To start, you'll need to obtain the necessary files for Minecraft Forge and the mods you want to install. Visit the official Minecraft Forge website (files.minecraftforge.net) and download the recommended or latest version of the Forge installer for your desired Minecraft version. Additionally, download the mods you wish to install and ensure they are compatible with the Forge version you've chosen.
Set Up a Dedicated Server:
Create a separate folder on your computer or server to house the Forge server files. This folder should be distinct from your vanilla Minecraft server folder to avoid conflicts. Copy the server.jar file from your vanilla Minecraft server into the new Forge server folder.
Install Minecraft Forge:
Open a command prompt or terminal window and navigate to the Forge server folder. Run the Forge installer by executing the following command:
java -jar forge-installer.jar --installServer
Replace "forge-installer.jar" with the name of the Forge installer file you downloaded. This command will install the Forge server files into your server folder.
Remove the GUI Components:
Once the Forge server files are installed, navigate to the "libraries" folder within the server folder. Locate the "net/minecraftforge/forge" folder and delete the "version" folder inside it. This step removes the GUI components from the Forge server, streamlining the modding process.
Add Mods:
Copy the mod files you downloaded earlier into the "mods" folder within the Forge server folder. Ensure that the mods are compatible with the Forge version you installed.
Edit Server Properties:
Open the "server.properties" file located in the Forge server folder using a text editor. Customize the server properties according to your preferences, such as setting the server name, adjusting player limits, or modifying other server settings.
Start the Forge Server:
To start the Forge server, navigate to the Forge server folder in the command prompt or terminal window. Execute the following command:
java -jar forge-server.jar
Replace "forge-server.jar" with the name of the Forge server file. The server will start, and you'll see the mod loading messages in the console.