Hello,
I’m looking for any suggestions to get my new linux client to see my urbackup server. I already have other linux/windows clients that are correctly configured and working with this server.
client:
Linux rocky 5.14.0-503.21.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jan 8 17:35:30 UTC 2025 x86_64 x86_64 x86_64 GNU/Linux
Server is running in a Promox Debian VM.
Client is at 192.168.1.181
Server is at 192.168.1.90
Looking through some posts, I tried this command to see if the urbackup server pings were being received:
sudo tcpdump -i enp8s0 udp port 35622
tcpdump: verbose output suppressed, use -v[v]… for full protocol decode
listening on enp8s0, link-type EN10MB (Ethernet), snapshot length 262144 bytes
15:26:37.734173 IP 192.168.1.90.35623 > 255.255.255.255.35622: UDP, length 1
15:26:37.734174 IP6 fe80::be24:11ff:fe69:2d8d.35623 > ff12::f894:d:dd00:ef91.35622: UDP, length 1
15:26:37.734175 IP 192.168.1.90.35623 > rocky.35622: UDP, length 1
It looks like that is working correctly.
I also tried this command:
sudo netstat -tulpn | grep LISTEN
I got this output:
tcp 0 0 0.0.0.0:35621 0.0.0.0:* LISTEN 55250/urbackupclien
tcp 0 0 0.0.0.0:35623 0.0.0.0:* LISTEN 55250/urbackupclien
tcp6 0 0 :::35621 :::* LISTEN 55250/urbackupclien
tcp6 0 0 :::35623 :::* LISTEN 55250/urbackupclien
I think that looks good.
When I start the urbackupclientbackend I get this in the /var/log/urbackupclient.log
2025-01-18 14:56:15: SQLite: recovered 24 frames from WAL file /usr/local/var/urbackup/backup_client.db-wal code: 283
2025-01-18 14:56:15: FileSrv: Binding UDP socket at port 35622…
2025-01-18 14:56:15: FileSrv: done.
2025-01-18 14:56:15: FileSrv: Binding ipv6 UDP socket at port 35622…
2025-01-18 14:56:15: FileSrv: done.
2025-01-18 14:56:15: urbackupserver: Server started up successfully!
2025-01-18 14:56:15: Started UrBackupClient Backend…
2025-01-18 14:56:15: FileSrv: Servername: -rocky-
2025-01-18 14:56:15: FileSrv: Server started up successfully
2025-01-18 14:56:15: FileSrv: UDP Thread started
2025-01-18 14:56:16: Looking for old Sessions… 0 sessions
2025-01-18 14:56:16: Internet mode not enabled
2025-01-18 14:59:16: Internet mode not enabled
2025-01-18 15:26:17: Looking for old Sessions… 0 sessions
Here is the status output:
{
“capability_bits”: 65548,
“finished_processes”: ,
“internet_connected”: false,
“internet_status”: “no_server”,
“last_backup_time”: 0,
“running_processes”: ,
“servers”: ,
“time_since_last_lan_connection”: 14587823
}
I’m not seeing any errors… The client will sit there and never connect. I’ve let it run for an hour without any other updates. This is my first time using Rocky Linux… so I’m not sure if there are firewall settings that need changing. Any suggstions on things to try would be appreciated.
thanks!