Installing Multicraft on Debian
Updated by Alex Fornuto Written by Alex Fornuto
DeprecatedThis guide has been deprecated and is no longer being maintained.
Dedicated CPU instances are available!Linode's Dedicated CPU instances are ideal for CPU-intensive workloads like those discussed in this guide. To learn more about Dedicated CPU, read our blog post. To upgrade an existing Linode to a Dedicated CPU instance, review the Resizing a Linode guide.
Multicraft is a control panel for single or multiple Minecraft servers Free and paid versions are available. This guide will help you install Multicraft on a Linode running Debian 7.
NoteThe steps required in this guide require root privileges. Be sure to run the steps below asroot
or with the sudo prefix. For more information on privileges see our Users and Groups guide.
Prerequisites
Multicraft for Linux depends on several software packages in order to run.
Update your system:
apt-get update; apt-get upgrade -y
Install Apache2, SQLite, Java, PHP, and related packages:
apt-get install -y apache2 sqlite php5 php5-sqlite php5-gd openjdk-7-jre-headless
In Apache’s default virtual host file under the
<Directory /var/www/>
section, change theAllowOverride
value toall
.- /etc/apache2/sites-enabled/000-default
-
1 2 3 4 5 6
<Directory /var/www/> Options Indexes FollowSymLinks MultiViews AllowOverride all Order allow,deny allow from all </Directory>
Note
If you want a dedicated Apache virtual host for Multicraft, follow the instructions here. Be sure to configure theAllowOverride
option on your custom virtual host.Reload the Apache configuration:
service apache2 reload
Installing Multicraft
Download the Multicraft installer:
wget --content-disposition http://www.multicraft.org/download/index?arch=linux64
Expand the installer:
tar -xzf multicraft*.tar.gz
Move to the
multicraft
directory:cd multicraft/
Execute the
setup.sh
script:./setup.sh
This will launch an interactive script that will prompt you to configure several options. If you’ve purchased a license for Multicraft, enter it when prompted. If you’re unsure which option to choose, press
return
to select the default option.Caution
Because of the insecure nature of FTP, we strongly recommend that you not enable the built-in FTP server when prompted.
Configuring the Control Panel
In your local web browser, navigate to
http://12.34.56.78/multicraft/install.php
, replacing12.34.56.78
with your Linode’s IP address or domain name. Click onStart Installation
:Multicraft will check your requirements. If you completed the steps above without issue, your page should reflect the results shown below:
Click
Continue
.Multicraft will attempt to copy the default
config.php
file into place. If successful, clickContinue
:On the next page, click on
Initialize Database
. Afterwards, clickContinue
:The next page will attempt to connect to the panel database. You should see the message
Connection successful
. You can now click on theLogin
button and sign in with the username and passwordadmin
:After logging in you will be directed back to the previous page, where you can now click on
Continue
. The next page will allow you to configure your basic settings. When done, clickSave
.On the daemon configuration page, you will find a start command to initiate the Multicraft Daemon. Copy the command into your terminal:
/home/minecraft/multicraft/bin/multicraft -v start Multicraft 1.8.2 - Minecraft Server Manager Daemon Loading configuration from /home/minecraft/multicraft/multicraft.conf Starting daemon
Back in your browser, click on
Refresh
. You should see the daemon in a green box. ClickContinue
:Your configuration of the Multicraft control panel is now complete. As per the instructions on the page, delete the
install.php
file from your terminal:rm /var/www/multicraft/install.php
Install Minecraft
Navigate to the directory where Multicraft stores
jar
files. If you used the default options, it will be/home/minecraft/multicraft/jar/
:cd /home/minecraft/multicraft/jar/
Download the latest version of the Minecraft server (1.8.1 at the time of this publication) from the Minecraft Download page:
wget https://s3.amazonaws.com/Minecraft.Download/versions/1.8.1/minecraft_server.1.8.1.jar
Back in the Multicraft web interface, click on
Servers
, thenCreate Server
. Fill in the options as you see fit, but be sure to addminecraft_server.1.8.1.jar
(or your downloaded version) in theJAR File
field:The first time you attempt to start the Minecraft server it will fail. By checking the Console view, you should see the following output:
... 04.02 22:24:38 [Server] INFO [22:24:38] [Server thread/INFO]: Stopping server 04.02 22:24:38 [Server] INFO [22:24:38] [Server thread/INFO]: You need to agree to the EULA in order to run the server. Go to eula.txt for more info. 04.02 22:24:38 [Server] INFO [22:24:38] [Server thread/WARN]: Failed to load eula.txt ...
After reading the End User License Agreement, open the file
eula.txt
in your terminal, and change the value ofeula
totrue
:- /home/minecraft/multicraft/servers/server1/eula.txt
-
1 2 3
#By changing the setting below to TRUE you are indicating your agreement to our EULA (https://account.mojang.com/documents/minecraft_eula). #Wed Feb 04 22:24:38 UTC 2015 eula=true
You can now successfully start and manage your Minecraft server through Multicraft! For instructions on connecting to your Minecraft server, click here.
More Information
You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials.
Join our Community
Find answers, ask questions, and help others.
This guide is published under a CC BY-ND 4.0 license.