this post was submitted on 21 Sep 2024
5 points (100.0% liked)
Linux Questions
1063 readers
2 users here now
Linux questions Rules (in addition of the Lemmy.zip rules)
- stay on topic
- be nice (no name calling)
- do not post long blocks of text such as logs
- do not delete your posts
- only post questions (no information posts)
Tips for giving and receiving help
- be as clear and specific
- say thank you if a solution works
- verify your solutions before posting them as facts.
Any rule violations will result in disciplinary actions
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I was able to get the server set up and it looks like it's running on my machine. I can see it in the android app, but the app seems to be stuck in the "connecting..." Status. Looks like the ports are opened appropriately. Have you had to work through any similar issue with your setup?
Do you have multiple VLANs? Do you have a firewall enabled on the machine? If your laptop and phone are in the same subnet and VLAN (hopefully, if not something is very wrong) then the server and client poth broadcast on a specific port (can't remember right now). They should see this. If not you've got a firewall problem. That's my best guess.
Was able to get it working with the following
sudo systemctl start roonserver
sudo systemctl enable roonserver
sudo mkdir -p /etc/firewalld/services/
sudo nano /etc/firewalld/services/roonserver.xml
Add the following content to the
roonserver.xml
file:sudo firewall-cmd --reload
sudo firewall-cmd --zone=public --add-service=roonserver --permanent
sudo firewall-cmd --reload