解决ssh localhost中root@localhost:要求输入密码问题(你需要生成好公钥,导入认证文件,让他去认证文件找,就可以免密了)

解决ssh localhost中root@localhost:要求输入密码问题(已经进行了无密码设置登录)

首先删除~/.ssh目录下的3个文件,如下

id_rsa

authorized_keys

id_rsa.pub

然后

exit   # 退出刚才的 ssh localhost
cd ~/.ssh/    # 若没有该目录,请先执行一次ssh localhost
ssh-keygen -t rsa    # 会有提示,都按回车就可以
cat ./id_rsa.pub >> ./authorized_keys    # 加入授权

再次启动ssh localhost就行了

你可能感兴趣的:(解决ssh localhost中root@localhost:要求输入密码问题(你需要生成好公钥,导入认证文件,让他去认证文件找,就可以免密了))