I cant connect to sshd and when viewing my logs I see this error
auth.log
Jan 30 00:17:23 linux sshd[28463]: error: Bind to port 22 on 0.0.0.0 failed: Address already in use.
Since google is my friend I looked it up and found out that its probably the process starting twice. I removed the process and reinstalled, same result. I also tried changing the port to something crazy like 39321 just to make sure nothing else was using 22. Here are the results of some of my troubleshooting:
[root@linux log]# fuser -n tcp 22
22/tcp: 28463
[root@linux log]# ps -e |grep 28463
28463 ? 00:00:00 sshd
[root@linux log]# netstat -na |grep 2073
tcp 0 0 :::22 :::* LISTEN
Please let me know what you think.
The GNUbie