问题描述:在Ubuntu下使用ssh及scp远程登录或者拷贝时,提示Permission denied(publickey)
解决办法:1.修改/etc/ssh/sshd_config文件,将其中的PasswordAuthentication no修改为PasswordAuthentication yes,将PubKeyAuthentication yes改为PubKeyAuthentication no;2.重启ssh服务:/etc/init.d/ssh restart.
解释:起初配置文件是PasswordAuthentication no,PubKeyAuthentication yes是说使用密钥登录不使用密码登录,所以出现上述错误,之后将其修改为使用密码登录而不使用密钥,问题解决