Starting OpenSSH
OpenSSH is installed by default during Linux installations. Because SSH and SCP are part of the same application, they share the same configuration file and are governed by the same /etc/init.d/sshd startup script.
You can configure SSH to start at boot by using the chkconfig command.
[root@bigboy tmp]# chkconfig sshd on
You can also start, stop, and restart SSH after booting by running the sshd initialization script.
[root@bigboy tmp]# service sshd start
[root@bigboy tmp]# service sshd stop
[root@bigboy tmp]# service sshd restart
Remember to restart the SSH process every time you make a change to the configuration files for the changes to take effect on the running process.
 |