I use a VPS with Ubuntu 10.04. After I performed "apt-get upgrade", the ssh daemon stopped working and does not automatically start when I restart my server. I have only access to files (edit, create delete etc.) and no shell access. Could you please help me out with setting up SSH Daemon autostart? Thank you very much.
Asked
Active
Viewed 3,382 times
1 Answers
0
Try editing /etc/init.d/rc.local
and add to the bottom:
sshd &
Then restart the server.
-
1This is definitly not the standard solution. I think it would be better to find out why the daemon does not automatically start. – lumbric Jul 07 '12 at 09:20
sudo invoke-rc.d ssh start
from the console of the server? – grifferz Jul 07 '12 at 10:10