I have searched the forum for similar issues
on
This category is for issues regarding specific apps, NOT general issues with YunoHost.
on
This form is written in English but feel free to write in French if you’re more comfortable!
on
What type of hardware are you using
Virtual machine
What YunoHost version are you running
11.2.31
What app is this about
Mumble Server
Describe your issue
Hello there,
For a little while, my Mumble Server on my Yunohost stopped listening on IPv4.
It was only reachable in IPv6.
If you are in this particular case as well, here is a quick and dirty fix:
- make sure that this is the right problem:
root@yunohost:~# sudo ss --listening --processes --udp --numeric | grep murmurd
UNCONN 0 0 [::]:64738 [::]:* users:(("murmurd",pid=51966,fd=42))
If you have a line with 0.0.0.0:64738 0.0.0.0:*
, then your mumbleserver
is listening on its port with IPv4.
My post is no help to you ; otherwise:
- identify the configuration file for mumbleserver:
root@yunohost:~# grep "ExecStart" /etc/systemd/system/mumbleserver.service
ExecStart=/usr/sbin/murmurd -ini /var/www/mumbleserver/mumble-server.ini
Here, mine is /var/www/mumbleserver/mumble-server.ini
.
- edit this file and modify the
host
parameter so that it is set to"0.0.0.0 ::"
.
Let’s verify:
root@yunohost:~# grep "^host" /var/www/mumbleserver/mumble-server.ini
host="0.0.0.0 ::"
- reload or restart the mumbleserver service
root@yunohost:~# sudo systemctl restart mumbleserver.service
- verify that
mumbleserver
is listening on both IPv4 and IPv6:
root@yunohost:~# sudo ss --listening --processes --udp --numeric | grep murmurd
UNCONN 0 0 0.0.0.0:64738 0.0.0.0:* users:(("murmurd",pid=51966,fd=42))
UNCONN 0 0 [::]:64738 [::]:* users:(("murmurd",pid=51966,fd=43))
Hope this helps,
alb1