Murmur: Difference between revisions
mNo edit summary |
Sunnythaper (talk | contribs) m (Tried running the original command and received an error. Looked up the error and it seems the command has changed.) |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 4: | Line 4: | ||
First of all we need Murmur in our server. | First of all we need Murmur in our server. | ||
{{Cmd|apk add murmur}} | {{Cmd|apk add murmur}} | ||
=== Setting up SSL certificates === | === Setting up SSL certificates === | ||
Line 27: | Line 19: | ||
{{Cmd|rc-service murmur start}} | {{Cmd|rc-service murmur start}} | ||
You can add the Murmur service to the default runlevel. | You can add the Murmur service to the default runlevel. | ||
{{Cmd|rc- | {{Cmd|rc-update add murmur default}} | ||
In case you don't want Murmur to be default on runlevel, rollback with this command | In case you don't want Murmur to be default on runlevel, rollback with this command | ||
{{Cmd|rc- | {{Cmd|rc-update delete murmur default}} | ||
[[category: telephony]] |
Latest revision as of 08:30, 17 June 2020
Murmur (also called Mumble-Server) is the server component for Mumble. Mumble is an open source, cross platform, low-latency, high quality voice over IP (VoIP) client. Mumble uses a client/server architecture and is primarily used by gamers, but can be used for any VoIP purpose.
Installation
First of all we need Murmur in our server.
apk add murmur
Setting up SSL certificates
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 'mumble' and add the cert paths to the mumble.ini configuration file. You can use vim and edit the file manually.
vim /etc/murmur.ini
It should look something like this.
Contents of /etc/murmur.ini
Starting up the service
Start the Murmur service.
rc-service murmur start
You can add the Murmur service to the default runlevel.
rc-update add murmur default
In case you don't want Murmur to be default on runlevel, rollback with this command
rc-update delete murmur default