Updating your SSH configuration to allow password authentication
- Once you’ve launched the console, it will ask you for your user name and password. If you had to reset your root password and are using your root user to log in, it will prompt you to create a new password by typing it twice.
- Once you are logged in, you will need to update your sshd_config file by typing:
vim /etc/ssh/sshd_config
or if you are accessing it with a non-root user with sudo privileges, type:
sudo vim /etc/ssh/sshd_config
3. From there, you want to type i for INSERT (to edit your file) and find the option that says PasswordAuthentication no and update it to
PasswordAuthentication yes
Then, type:
esc
followed by:
:wq
to write and quit out of the file, followed by hitting enter.