Unix socket does not exist (Linux)
Last updated
Was this helpful?
Error: No such file or directory (os error 2) when trying to connect to a location.
The socket at /var/run/defguard.socket is created by the defguard-service background service. If this service is not running, the socket does not exist and the GUI client cannot establish a connection.
Run the following to enable and start the background service:
# Reload systemd to pick up the service file
sudo systemctl daemon-reload
# Enable the service to start on boot
sudo systemctl enable defguard-service
# Start it immediately
sudo systemctl start defguard-serviceVerify the service is running:
systemctl status defguard-serviceIf the service fails to start, check its logs:
journalctl -u defguard-service -n 100Last updated
Was this helpful?
Was this helpful?