Go to file
2012-09-02 13:16:33 -05:00
bash_completion Fix #76. Prevent bash completion from failing on help and update 2012-08-13 02:49:29 +01:00
cron Updated project URL in cron/msm 2012-07-10 02:42:20 +01:00
init Added check for wget --trust-server-names option. 2012-09-01 10:10:22 -05:00
installers Minecraft user group is created along with user. 2012-09-02 13:16:33 -05:00
versioning Added Bukkit-specific save messages. 2012-09-01 10:33:41 -05:00
.gitignore Ignore directories starting with an underscore. 2012-06-04 21:08:03 +01:00
.travis.yml Fixed spaces indentation for .travis.yml. 2012-06-18 02:16:10 +01:00
CHANGELOG.markdown Bump version to 0.8.11 2012-08-13 02:52:25 +01:00
install-debian.sh Abstracted install.sh and implemented Debian and Red Hat installs. 2012-09-02 12:45:09 -05:00
install-redhat.sh Abstracted install.sh and implemented Debian and Red Hat installs. 2012-09-02 12:45:09 -05:00
install.sh Add "cron reload" command to install script 2012-08-17 01:27:42 +02:00
LICENSE.markdown Fixed a formatting error. 2012-06-08 05:20:31 +02:00
msm.conf Corrected matching for toggledownfall. 2012-09-01 10:41:38 -05:00
README.markdown Add quick install to readme 2012-08-12 02:58:19 +01:00
test.sh Fix travis not finding versioning files 2012-08-13 02:39:01 +01:00

Minecraft Server Manager Build Status Flattr this git repo

A single init script which makes running multiple Minecraft/Bukkit servers easier for us admins.

Quick Debian Install

Install MSM on a debian box using my install script:

wget -qO- http://git.io/KxE3HQ | sh

Have a read of the script first if calms you: http://git.io/KxE3HQ

Getting Started

  • Install MSM on your box.
  • Visit the docs for help with getting started.
  • Fork and contribute your own modifications.
  • Not a coder? Post an issue with your idea for MSM instead.
  • Read the changelog to get a picture of how MSM has evolved over time.

MSM is released under the GPLv3 licence, which is included in the repository here. I'm open to suggestions where licencing is concerned.

Features

As well as starting, stopping and restarting MSM has the following features:

  • One script handles multiple servers, run two or more servers on one machine.
  • Can create and start new servers with a single command, downloads the jars for you.
  • Periodically makes WorldEdit snapshot compatible backups of your worlds.
  • Backup the entire server directory for complete protection.
  • Load world's into RAM for faster access (reduces lag).
  • Easily configurable global defaults, with per server overrides if needed.
  • Apply server commands to one, multiple, or all servers in one go (useful for whitelisting a player on all servers.)
  • Tab completion for all commands, makes everything faster and getting started a breeze.
  • Keep server logs organsied by periodically "rolling" them.
  • Organises jar files into groups (such as minecraft and craftbukkit) and links each server to a single jar. Includes automated download of new versions.
  • Plethora of in-game commands (whitelist, blacklist, operator, gamemode, kick, say, time, toggledownfall, save)
  • Send commands straight to the server via the command line.

Support

  1. If you find a problem with MSM and you think the problem is one that requires changing code submit an issue via GitHub.
  2. If you otherwise have a problem, question or suggestion you can email me directly at msm@marcuswhybrow.net.

Upcomming features

  • QuickBackup: If you store your backups non-locally (maybe on a NAS), QuickBackup optionally creates a backup locally for speed, and then moves it after your players are building again! My initial testing shows a 54 second network backup confaltes to 23 seconds of in-game time.
  • Restore: Roll-back to an old world or whole server backup automatically.

Versioning

MSM uses semantic version numbers to better describe what code one might have installed, and indicate backwards incompatible changes.

Releases will be numbered with the follow format:

<major>.<minor>.<patch>

And constructed with the following guidelines:

  • Breaking backward compatibility bumps the major (and resets the minor and patch)
  • New additions without breaking backward compatibility bumps the minor (and resets the patch)
  • Bug fixes and misc changes bumps the patch

For more information on SemVer, please visit http://semver.org/.

Acknowledgements

This code grew out of an old version of Ahtenus' Minecraft Init Script.