On your node server, where you will be using the minecraft servers:
-
Install all dependencies:
Note: make sure you have wheezy-backports enabeld, otherwise you won't have a useful nodejs!
sudo apt-get install git libapache2-mod-php5 mysql-client php5-mcrypt php5-curl php5-cli php5-dev php-pear libssh2-1 libssh2-php libssh2-1-dev postfix denyhosts openssl curl git rssh quota nodejs-legacy build-essential pwgen
Install npm using:
curl https://www.npmjs.org/install.sh | sudo sh
This installs everything you need to run most PHP 5.4.x webapps, with MySQL client support, Postfix for email support and nodejs for javascript applications, quota for user quotas and build-essential for the upcoming steps. Additionally, it sets you up with some developer tools (for example: to install php5-ssh2 from pecl if the version from the repos is too old). It also installs DenyHosts which uses TCPWrappers's /etc/hosts.deny to blacklist brute forcing hostst on the fly so SSH break-ins are a a lot harder.
Since minecraft requires Java, it makes sense to install a quality Java Runtime. Let's take the one made by Oracle. In order to make this support system defaults and updates, use the webupd8team repository:
su - # echo needs root, you can use sudo su too
echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu precise main" | tee -a /etc/apt/sources.list
echo "deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu precise main" | tee -a /etc/apt/sources.list
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys EEA14886
apt-get update
exit
This sets you up with a respository that allows you to install Oracle's Java from the system package managers. To do so:
sudo apt-get install oracle-java7-installer
If you had a different JVM installed, execute this to make Oracle Java the default JVM Runtime:
sudo apt-get install oracle-java7-set-default
All of these commands are for Java 7. If you want to install a different version, subsitute the 7 with the version you want (and make sure it exist in the repo, or it simply won't do anything)
-
Install the node environment
First, setup a few directories you're gonna need:
sudo mkdir /srv/scripts sudo mkdir /srv/servers sudo mkdir /srv/modpacks
Then, configure sshd by executing: sudo nano /etc/sshd/sshd_config
and apply these steps: - Set sftp to use the internal command: Comment out (by adding a hash mark in front of the line (#)): Subsystem sftp /usr/lib/openssh/sftp-server Insert (above or below that line): Subsystem sftp internal-sftp - Set the rssh group to sftp-only by adding this to the end of the file: Match Group rsshusers ChrootDirectory /srv/servers/%u X11Forwarding no AllowTcpForwarding no ForceCommand internal-sftp
Save with Control+X, press Y, press enter
Next, configure RSSH:
sudo addgroup rsshusers sudo nano /etc/rssh.conf
Inside the configuration file, remove the hash mark (#) in front of allowsftp to enable sftp.
Save with Control+X, press Y, press enter
With RSSH and SSHD done, lets get some other services set-up:
Install gsd by moving to the srv directory and cloning it from the repo using git: cd /srv/ && sudo git clone https://github.com/gametainers/gsd.git Then install it using a restricted user: sudo chown -R www-data:www-data /srv/gsd sudo chmod -R 0775 /srv/gsd cd /srv/gsd; sudo npm install; cd ~
Now, setup cpulimit, with the following commands:
git clone https://github.com/DaneEveritt/cpulimit.git cd cpulimit make sudo cp cpulimit /usr/local/bin
Finally, we set up a vhost to allow users to administer their servers:
[ INSERT VHOST HERE ]
This concludes the environment setup phase.