Deploy Mumble Game Servers

LinuxGSM is the command-line tool for quick, simple deployment and management of Linux dedicated game servers.

Mumble Logo

Compatibility

Mumble will run on popular distros as long as the minimum requirements are met.

Install Notes

Important: At this time Mumble server is no longer working and supported. This is due to a change in how mumble is distributed as they can no longer provide a static binary because of old infrastructure.
We will investigate if there are other options and hope in the future a solution is found.
https://github.com/mumble-voip/mumble/issues/5693

Server

For consistant uptime it is recomended you host a server in a data center. If you dont already have a server, you can rent a dedicated or vitual server from one of our sponsored providers, OVHCloud, Linode, Vultr.

Minimum Recommended Distros

Other Distros

Although not tested, any distro with tmux => 1.6 should also be compatible with mumbleserver servers. For distros not listed above LinuxGSM does not check dependencies and should be manually checked.

Game Server Binary

Only 32-Bit game server binary is available.

Install Dependencies Using LinuxGSM

LinuxGSM will attempt to install dependencies either by having the mumbleserver user account with sudo access or running the installer as root.

user with sudo access

During the installation if the game server user has sudo permissions LinuxGSM will attempt to install any missing dependencies itself.

root user

if mumbleserver is already installed run ./mumbleserver install as root and LinuxGSM will automatically install missing dependencies.

Install

From the command-line do the following. Ensuring you have also installed the required dependencies.

1. Create a user and login.
adduser mumbleserver
For security best practice, ensure you set a strong password. Random password:
su - mumbleserver
2. Download linuxgsm.sh.
curl -Lo linuxgsm.sh https://linuxgsm.sh && chmod +x linuxgsm.sh && bash linuxgsm.sh mumbleserver
3. Run the installer following the on-screen instructions.
./mumbleserver install

Basic Usage

All Commands

A complete list of commands can be found by typing.
./mumbleserver
Below are the most common commands available.

Running

start

./mumbleserver start

stop

./mumbleserver stop

restart

./mumbleserver restart

console

Console allows you to view the live console of a server as it is running and allow you to enter commands; if supported.
./mumbleserver console
To exit the console press CTRL+b d. Pressing CTRL+c will terminate the server.

Debugging

Details

You can get all important and useful details about the server such as passwords, ports, config files etc.

./mumbleserver details

Debug

Use debug mode to help you if you are having issues with the server. Debug allows you to see the output of the server directly to your terminal allowing you to diagnose any problems the server might be having.

./mumbleserver debug

Logs

Server logs are available to monitor and diagnose your server. Script, console and game server (if available) logs are created for the server.

/home/mumbleserver/logs

Backup

Backup will allow you to create a complete tar bzip2 archive of the whole server.

./mumbleserver backup

Monitor

LinuxGSM can monitor the game server by checking that the proccess is running and querying it. Should the server go offline LinuxGSM can restart the server and send you an alert. You can use cronjobs to setup monitoring.

./mumbleserver monitor

Configure LinuxGSM

For details on how to alter LinuxGSM settings visit LinuxGSM Config Files page.

Documentation

For detailed documentation visit the LinuxGSM docs.

Cronjobs

To automate LinuxGSM you can set scheduled tasks using cronjobs, to run any command at any given time. You can edit the crontab using the following.

crontab -e

Below are the recommended cron tasks.

*/5 * * * * /home/mumbleserver/mumbleserver monitor > /dev/null 2>&1
0 0 * * 0 /home/mumbleserver/mumbleserver update-lgsm > /dev/null 2>&1

Configure LinuxGSM

For details on how to alter LinuxGSM settings visit LinuxGSM Config Files page.

Documentation

For detailed documentation visit the LinuxGSM docs.