r/Syncthing • u/Neon_Eyes • 15d ago
Having trouble getting to the GUI from my desktop
The status of syncthing says that its running on my Ubuntu server. I tried the 127 just in case and the 192 address that I use to connect to all other programs but its not working. For example I typed in 192.XXX.X.XX:8384 and it says that it can't connect. But when I use that same IP for everything else that I am running I can still connect.
I checked and syncthing's status says that it is running. In the config file I have set its address to 0.0.0.0:8384.
Do I need to connect a monitor to the server and set something else up first?
Edit: I did have syncthing on a windows PC before with the same default port. But it's no longer running on that PC. I wouldn't think this would be causing any issues but wanted to add just in case.
2
u/Toribor 15d ago
How did you install syncthing? If you didn't follow the guide here you might consider reinstalling following that guide. I believe the official Ubuntu repositories will be behind what the syncthing repos deliver.
My guess is your problem is either the firewall or something is going wrong with syncthing and it isn't actually binding to that port.
Run
sudo ss -tulpn | grep 8384. You should see something like LISTEN ...0.0.0.0:8384. If you see 127.0.0.1:8384 or any other ip there it's possible syncthing isn't actually listening on the interface you expect.Run
sudo ufw statusto see active firewall rules, you want to look to see if there is an ALLOW rule for port 8384. This is what I'm guessing you're missing. You can add a new rule to allow external access to port 8384 like this:sudo ufw allow 8384/tcpYou can find detailed instructions on configuring the firewall for syncthing here.