Unable to start SSHD after restarting serverTo find the problem with starting sshd you can use the command below,sudo sshd -TI found that I had to create a directory as shown below to solve the problem.mkdir /var/run/sshd/ cd /var/run/sshd/ ln -s /etc/localtime localtime … [Read more...] about Failed to start OpenBSD Secure Shell server [SOLVED]
How to generate ssh keys and grant access to a remote server
In this blog post, I will show you how to generate ssh keys on local and grant access to your server.Step-1: Create SSH keys on your localFirst, you need to create ssh keys on your system by using ssh-keygenssh-keygenThis will ask you to enter passphrase for extra security, for now … [Read more...] about How to generate ssh keys and grant access to a remote server