<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.alpinelinux.org/w/index.php?action=history&amp;feed=atom&amp;title=Mumble</id>
	<title>Mumble - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.alpinelinux.org/w/index.php?action=history&amp;feed=atom&amp;title=Mumble"/>
	<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Mumble&amp;action=history"/>
	<updated>2026-05-06T09:31:15Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.40.0</generator>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Mumble&amp;diff=32004&amp;oldid=prev</id>
		<title>John3-16: 1. Created Mumble page by moving and updating contents of Murmur page, further to preferred and updated naming upstream;  2. Expanded Beginning to include client side;  3. Added &#039;See also&#039;.  See Talk:Mumble.</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Mumble&amp;diff=32004&amp;oldid=prev"/>
		<updated>2026-02-01T04:48:14Z</updated>

		<summary type="html">&lt;p&gt;1. Created Mumble page by moving and updating contents of Murmur page, further to preferred and updated naming upstream;  2. Expanded Beginning to include client side;  3. Added &amp;#039;See also&amp;#039;.  See &lt;a href=&quot;/wiki/Talk:Mumble&quot; title=&quot;Talk:Mumble&quot;&gt;Talk:Mumble&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;[https://www.mumble.info/ Mumble] is an open source, cross platform, low-latency, high quality voice over IP (VoIP) voice-chat program. It uses a client/server architecture and is primarily used by gamers, but can be used for any VoIP purpose:-&lt;br /&gt;
* {{Pkg|mumble}} (lowercase) is the client.&lt;br /&gt;
* {{Pkg|mumble-server}} is the server component.  It was previously called [https://github.com/mumble-voip/mumble#mumble---open-source-voice-chat-software murmur] and still retains that package name and service name in Alpine Linux v3.21 and earlier.  &lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
First of all, we need &amp;#039;&amp;#039;&amp;#039;mumble-server&amp;#039;&amp;#039;&amp;#039;.  Its dependencies will be pulled in automatically, including {{Pkg|mumble-server-openrc}} on Alpine Linux installations where OpenRC has been conserved as the init system.&lt;br /&gt;
&lt;br /&gt;
{{Cmd|$ doas apk add mumble-server}}&lt;br /&gt;
&lt;br /&gt;
{{Note|&lt;br /&gt;
* On Alpine Linux 3.22 and above, installing &amp;#039;&amp;#039;&amp;#039;murmur&amp;#039;&amp;#039;&amp;#039; will install &amp;#039;&amp;#039;&amp;#039;mumble-server&amp;#039;&amp;#039;&amp;#039; thanks to the {{ic|Provides: murmur}} directive of {{Pkg|mumble-server}}, thus providing backward compatibility for the &amp;#039;&amp;#039;packages&amp;#039;&amp;#039;.&lt;br /&gt;
* Thanks to the {{Pkg|murmur-compat}} subpackage of {{Pkg|mumble-server}} on Alpine Linux v3.22 and above, references to &amp;#039;&amp;#039;&amp;#039;murmur&amp;#039;&amp;#039;&amp;#039; there are recognized as &amp;#039;&amp;#039;&amp;#039;mumble-server&amp;#039;&amp;#039;&amp;#039; (via a symlink from {{Path|/etc/init.d/murmur}} pointing to {{Path|/etc/init.d/mumble-server}}), thus providing backward compatibility for the &amp;#039;&amp;#039;services&amp;#039;&amp;#039;.}}&lt;br /&gt;
&lt;br /&gt;
=== Setting up SSL certificates ===&lt;br /&gt;
If you already have used Certbot to set up certificates in your web server, then you can easily make a new certificate for a subdomain &amp;#039;mumble&amp;#039; and add the cert paths to the {{Path|murmur.ini}} configuration file. You can use nano or vim, etc., to edit the file manually.&lt;br /&gt;
{{Cmd|$ doas nano /etc/murmur.ini}}&lt;br /&gt;
It should look something like this.&lt;br /&gt;
{{Cat|/etc/murmur.ini|&amp;lt;nowiki&amp;gt;&lt;br /&gt;
sslCert=/etc/letsencrypt/live/your_domain.com/fullchain.pem&lt;br /&gt;
sslKey=/etc/letsencrypt/live/your_domain.com/privkey.pem&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Running as a service ==&lt;br /&gt;
&lt;br /&gt;
=== Configuration ===&lt;br /&gt;
Make sure that the following line is present in your {{Path|murmur.ini}}:&lt;br /&gt;
{{Cat|/etc/murmur.ini|&amp;lt;nowiki&amp;gt;&lt;br /&gt;
pidfile=/var/run/murmur/murmur.pid&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
This will allow OpenRC to track the status of the process.&lt;br /&gt;
&lt;br /&gt;
=== Starting up the service ===&lt;br /&gt;
Start the &amp;#039;&amp;#039;&amp;#039;mumble-server&amp;#039;&amp;#039;&amp;#039; service.&lt;br /&gt;
{{Cmd|$ doas rc-service mumble-server start}}&lt;br /&gt;
You can add the &amp;#039;&amp;#039;&amp;#039;mumble-server&amp;#039;&amp;#039;&amp;#039; service to the default runlevel:&lt;br /&gt;
{{Cmd|$ doas rc-update add mumble-server default}}&lt;br /&gt;
In case at one point you don&amp;#039;t want &amp;#039;&amp;#039;&amp;#039;mumble-server&amp;#039;&amp;#039;&amp;#039; to be on the default runlevel, rollback with this command:&lt;br /&gt;
{{Cmd|$ doas rc-update delete mumble-server default}}&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Generating SSL certs with ACF]] - Configuration of &amp;#039;&amp;#039;sslCert&amp;#039;&amp;#039; and &amp;#039;&amp;#039;sslKey&amp;#039;&amp;#039;.&lt;br /&gt;
&lt;br /&gt;
[[Category: telephony]]&lt;/div&gt;</summary>
		<author><name>John3-16</name></author>
	</entry>
</feed>