Murmur: Difference between revisions
mNo edit summary |
|||
Line 1: | Line 1: | ||
[https://wiki.mumble.info/wiki/Running_Murmur Murmur] (also called Mumble-Server) is the server component for [https://wiki.alpinelinux.org/wiki/Mumble Mumble]. | [https://wiki.mumble.info/wiki/Running_Murmur Murmur] (also called Mumble-Server) is the server component for [https://wiki.alpinelinux.org/wiki/Mumble 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 == | == Installation == | ||
Line 24: | Line 24: | ||
=== Starting up the service === | === Starting up the service === | ||
Start the | Start the Murmur service. | ||
{{Cmd|rc-service murmur start}} | {{Cmd|rc-service murmur start}} | ||
You can add the | You can add the Murmur service to the default runlevel. | ||
{{Cmd|rc-service add murmur default}} | {{Cmd|rc-service add murmur default}} | ||
In case you don't want | In case you don't want Murmur to be default on runlevel, rollback with this command | ||
{{Cmd|rc-service delete murmur default}} | {{Cmd|rc-service delete murmur default}} |
Revision as of 06:33, 9 October 2019
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
Open the murmur.ini configuration file and edit it so murmur can be run by the 'murmur' user created by the package.
vim /var/lib/murmur/murmur.sqlite
Contents of /var/lib/murmur/murmur.sqlite
Now give permissions to the murmur database, so the user 'murmur' can read it.
chown murmur /var/lib/murmur/murmur.sqlite
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-service add murmur default
In case you don't want Murmur to be default on runlevel, rollback with this command
rc-service delete murmur default