Go to file
Blaine Motsinger fc954bc210 Update wl, bl, and op commands to not edit files
This commit updates the wl, bl, and op commands to no longer edit
their corresponding server files.  msm still edits config settings
in files, but relies on minecraft server to manage it's own files,
passing the commands to the running server for changes.

Minecraft server moved to json in version 1.7.2 which made
directly editing txt files no longer work.

This change follows the pattern of the other passthrough commands
that if the server isn't running, returns error_exit informing the
user the server is not running.

Fixes issue #404
2020-09-27 17:10:55 -05:00
bash_completion Updated links for movement of repo, as discussed in #291. Although the links still work without issue, forwarded from the old address, I don't want to make the assumption this will continue into the future. 2015-07-15 16:36:16 +00:00
cron * [Reference](https://github.com/msmhq/msm/issues/50#issuecomment-7082834) 2020-07-19 10:35:19 -05:00
init Update wl, bl, and op commands to not edit files 2020-09-27 17:10:55 -05:00
installers * [Reference](https://github.com/msmhq/msm/issues/50#issuecomment-7082834) 2020-07-19 10:35:19 -05:00
versioning Add LOG_PATH to version files. 2015-08-23 10:10:04 +10:00
.gitignore Ignore directories starting with an underscore. 2012-06-04 21:08:03 +01:00
.travis.yml Update .travis.yml 2016-01-15 19:23:29 -05:00
CHANGELOG.markdown bumped version and update changelog 2015-10-07 17:20:38 +11:00
LICENSE.markdown Fixed a formatting error. 2012-06-08 05:20:31 +02:00
msm.conf Convert default server txt files to json 2020-09-27 16:33:53 -05:00
README.markdown Typo fix 2016-01-18 23:42:15 -05:00
test.sh add dollar sign for interpolation 2019-11-28 21:29:21 -05:00

Minecraft Server Manager Build Status Donate to MSM

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

Quick Installers

Install MSM on a debian box:

wget -q http://git.io/Sxpr9g -O /tmp/msm && bash /tmp/msm

Or install MSM under RedHat:

wget -q http://git.io/lu0ULA -O /tmp/msm && bash /tmp/msm

Or suggest a new platform.

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.

Upcoming 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 in the following 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, visit http://semver.org/.

Acknowledgements

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