I am trying to install server on runcloud through runcloud agent But he unable to make ssh into my server. It seems that the password authentication is not enabled on the server.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hello @rumer878
In order to enable Password level authentication, you can follow these steps.
sudo nano /etc/ssh/sshd_config
PasswordAuthentication
from “no” to “yes” and save the filesudo nano ~/.ssh/authorized_keys
sudo nano /etc/ssh/sshd_config
PasswordAuthentication
from “yes” to “no” and save the filesudo systemctl restart sshd
Regards, Alex
Hi there,
In order to enable password authentication you need to edit the
/etc/ssh/sshd_config
file:Then find the
PasswordAuthentication
and set it toyes
:After that restart the SSH service:
Hope that this helps! Regards, Bobby