On a particular CentOS 6 install, I must start SSH manually: # /etc/init.d/sshd start I have tried to configure it to start automatically: # chkconfig --level 3 sshd on However, it still must be manually started. I am not getting any errors. What might be preventing it from starting? Thanks. -- Dotan Cohen http://gibberish.co.il http://what-is-what.com
Am Donnerstag, den 01.09.2011, 17:09 +0300 schrieb Dotan Cohen:> However, it still must be manually started. I am not getting any > errors. What might be preventing it from starting? >Maybe a specific ip in /etc/ssh/sshd_config ? And the Network is not up? Have a look at /var/log/messages. Any hint there? -- Stefan Held VI has only 2 Modes: obi unixkiste org The first one is for beeping all the time, FreeNode: foo_bar the second destroys the text. --------------------------------------------------------------------------- perl -e'map{print pack c,($|++?1:13)+ord,select$,,$,,$,,$|}split//,ESEL.$/' ---------------------------------------------------------------------------
From: Dotan Cohen <dotancohen at gmail.com>> On a particular CentOS 6 install, I must start SSH manually: > # /etc/init.d/sshd start > I have tried to configure it to start automatically: > # chkconfig --level 3 sshd onMaybe try: ? chkconfig --del sshd ? chkconfig --add sshd Do you see the symlinks? ? # ll /etc/rc?.d/*sshd ? lrwxrwxrwx. 1 root root 14 Sep? 1 15:06 /etc/rc0.d/K25sshd -> ../init.d/sshd ? lrwxrwxrwx. 1 root root 14 Sep? 1 15:06 /etc/rc1.d/K25sshd -> ../init.d/sshd ? lrwxrwxrwx. 1 root root 14 Sep? 1 15:06 /etc/rc2.d/S55sshd -> ../init.d/sshd ? lrwxrwxrwx. 1 root root 14 Sep? 1 15:06 /etc/rc3.d/S55sshd -> ../init.d/sshd ? lrwxrwxrwx. 1 root root 14 Sep? 1 15:06 /etc/rc4.d/S55sshd -> ../init.d/sshd ? lrwxrwxrwx. 1 root root 14 Sep? 1 15:06 /etc/rc5.d/S55sshd -> ../init.d/sshd ? lrwxrwxrwx. 1 root root 14 Sep? 1 15:06 /etc/rc6.d/K25sshd -> ../init.d/sshd JD