How to force SSH key only access to your Linux system with password access being denied.
Creating SSH key access to Linux instead of a password.
Open the sshd config file for editing:
nano /etc/ssh/sshd_config
Find and set/ensure the following have these values:
PasswordAuthentication no PubkeyAuthentication yes UsePAM no ChallengeResponseAuthentication no
Note Being commented out has no effect, it must be stated
#PasswordAuthentication no
Make sure it is:
PasswordAuthentication no
Press control + x then y and then enter to save.
Now restart the sshd service with:
service ssh restart
It is always best to check before you close the session that the sshd service accepts your key file, do this by opening up a new ssh session connecting with your private key file.
A drained and empty Kennington reservoir images from a drone in early July 2024. The…
Merrimu Reservoir from drone. Click images to view larger.
Using FTP and PHP to get an array of file details such as size and…
Creating and using Laravel form requests to create cleaner code, separation and reusability for your…
Improving the default Laravel login and register views in such a simple manner but making…
Laravel validation for checking if a field value exists in the database. The validation rule…