Since my last yum update I've not been able to ssh to one of my boxes.
The sshd wouldn't restart.
[root (at mark) ns1 /]# /etc/init.d/sshd start
Starting sshd:FAILED]
I've now found the solution and I wanted to share just in case anyone else
is having the same issue.
solution was found at
http://www.linuxquestions.org/questions/linux-networking-3/sshd-fatal-daemon
-failed-no-such-device-279664/
>the solution is in the /dev/null file. it should now be a regular file,
which is not recommended
>some install script probably replaced the /dev/null with a file of the same
name...
>do the following:
>remove "rm /dev/null"
>and then: "mknod /dev/null c 1 3"
>this will create the /dev/null and sshd should start as normal.
Best Regards,
Howie.