-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Could be that a daemon was installed (and started) by doing so. I don't use or know OMV, but since it is based on Debian you could check if a service is running using
Yes, because it does not daemonize itself.
This could also be caused by strict firewall setup. I would recommend to check if a wsdd daemon is running (see above) and stop it. After that run wsdd on the command line (just as you did). That should not cause error messages at all. When wsdd starts up successfully and firewall rules allow for it, your machine should show up immediately in Explorer's network view. Does this help? |
Beta Was this translation helpful? Give feedback.
Could be that a daemon was installed (and started) by doing so.
I don't use or know OMV, but since it is based on Debian you could check if a service is running using
systemctl status wsdd
. You can also runss -tlnp | grep 5357
with root privileges. If there is non-empty output, an instance of wsdd (or another implementation) is already running. This would also explain the error messages ("address already in use") you see.Yes, because it does not daemonize itself.