1

We are unable to solve the below error in Ubuntu16.04:

Permission denied (publickey,password).

We have tried this Ubuntu Handbook guide.

What else can we try?

Zanna
  • 72,312

1 Answers1

0

Follows the below steps: By default, the SSH server denies password-based login for root. In /etc/ssh/sshd_config, change:

PermitRootLogin without-password

to

PermitRootLogin yes

And restart SSH:

sudo service ssh restart