Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: Cannot modify header information - headers already sent by (output started at /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php:783) in /home/akl1986/public_html/support/wp-includes/feed-rss2.php on line 8
How to Install Forge and Sponge (Minecraft) on a CentOS 6 Server – AKLWEB HOST LLC Support Center https://support.aklwebhost.com Thu, 05 Dec 2019 00:31:15 +0000 en-US hourly 1 https://wordpress.org/?v=6.4.4 How to Install Forge and Sponge (Minecraft) on a CentOS 6 Server https://support.aklwebhost.com/knowledgebase/how-to-install-forge-and-sponge-minecraft-on-a-centos-6-server/ https://support.aklwebhost.com/knowledgebase/how-to-install-forge-and-sponge-minecraft-on-a-centos-6-server/#respond Tue, 26 Nov 2019 06:45:51 +0000 https://support.aklwebhost.com/?post_type=manual_kb&p=2214 In this article, we will be covering the process of installing Sponge, a type of Minecraft server. Sponge is a project that aims to provide the ability to add mods and plug-ins to Minecraft.

Step 1: Gather prerequisites

For this article, we will need the following:

  • A Aklweb host server (a 768MB compute instance will do)
  • Java
  • The screen utility
  • A text editor of your choice (in this article, we will be using nano)
  • Root access to the instance

The first thing we’ll do is install Java and screen:

yum install java screen

When it prompts you to accept the installation, type “y” and hit enter.

Then, if you don’t already have a text editor, install one:

yum install nano

Step 2: Prepare your system

This step involves you creating another user for the game server to run as and creating any required directories. First, create your unprivileged user:

useradd minecraft

Now, log into the user account:

su minecraft

Create a directory for your server and enter the directory:

mkdir minecraftserver && cd minecraftserver

Step 3: Download Sponge and Forge

Assuming you’re already logged into your server, download the “jar” file that Sponge uses. A .jar file is essentially an executable file that Java will run.

Download the file for the 1.8 version of Minecraft:

wget http://files.minecraftforge.net/maven/net/minecraftforge/forge/1.8.9-11.15.1.1902-1.8.9/forge-1.8.9-11.15.1.1902-1.8.9-installer.jar

At the time of which this article was written, the above will download a Minecraft 1.8 Forge server.

Great, now that we have Forge, let’s install it.

Step 4: Installing the Sponge server along with Forge

If you’re using the 1.8 version, execute the following command to install the server and start it for the first time:

java -jar forge-1.8.9-11.15.1.1902-1.8.9-installer.jar --installServer

You will need to accept the EULA for Minecraft (this can be found here: https://account.mojang.com/documents/minecraft_eula) by opening eula.txt:

nano eula.txt

Change eula=false to eula=true, hit “ctrl + x” and “y” to save your changes.

Let’s add Sponge now by entering its directory:

cd mods/ && wget http://files.minecraftforge.net/maven/org/spongepowered/spongeforge/1.8-1577-3.1.0-BETA-1045/spongeforge-1.8-1577-3.1.0-BETA-1045.jar

Step 5: Setting up a startup script for Sponge + Forge

Now that we have a functioning server, all we need to do is create a startup script for the server.

Go back to your home directory:

cd ~/minecraftserver

Open up your text editor by executing nano start.sh and paste the following:

#!/bin/bash
memory="512"
java -Xmx"$memory"M -jar forge-1.8.9-11.15.1.1902-1.8.9-universal.jar

Remember to change the value 512 into the amount of memory you want to allocate to the server (in megabytes). For any Aklweb host instance, it is recommended that you leave some memory (~128MB) for the system to run properly as you run the server.

Hit “ctrl + x” and then hit “y” to save. Now, set the permissions on the file to allow execution: chmod 755 start.sh

Good job, you’ve installed a Forge + Sponge server. All that’s left is to run the server.

Starting the server

As we want the server to persist when we close our terminal, we need to open up a virtual screen:

screen
./start.sh

You’ll be able to view the console, and it’ll stay up even if you close your terminal/console.

Conclusion

In this article, you learned how to install Sponge and Forge to allow for server plug-ins and mods. Have fun with your new Minecraft server!

]]>
https://support.aklwebhost.com/knowledgebase/how-to-install-forge-and-sponge-minecraft-on-a-centos-6-server/feed/ 0