Hi, I made a yum update on 18th of july:
After that sshd is crashing on startup, Any help?
Please post log excerpts as text. I see this:
error: Bind to port 22 on :: failed: Address already in use.
This means some other process is already listening on port 22/TCP. It could be an existing instance of sshd that systemd somehow failed to track, or a different kind of SSH server (dropbear?). You can use lsof -n
or ss -p -l -t
to find that process, and them run systemctl status PID
with the PID value to find out where it's coming from.