概述
服务器操作系统:CentOS 6.6
想为非root用户建立ssh免密码登录,假设该用户名为otheruser。
我执行的步骤为:
1. 在服务器上生成公钥和密钥
[otheruser@localhost ~]# ssh-keygen -t rsa
所有提示均采用默认选项。将生成的.ssh/id_rsa.pub改名字为authorized_keys,查看.ssh和authorized_keys的权限
[otheruser@localhost ~/.ssh]# cpid_rsa.pub authorized_keys
[otheruser@localhost~/.ssh]# ls -al ~drwx------ 2 otheruser otheruser 4096 May 13 06:50 .ssh[otheruser@localhost~/.ssh]# ls -al ~/.sshdrwx------ 2 otheruser otheruser 4096 May 13 06:50.
drwxrwxr--. 4 otheruser otheruser 4096 May 9 07:23..-rw------- 1 otheruser otheruser 412 May 13 06:50authorized_keys-rw------- 1 otheruser otheruser 1675 May 13 06:48id_rsa-rw------- 1 otheruser otheruser 412 May 13 06:48 id_rsa.pub
可以看出~/.ssh的权限是700,~/.ssh/authorized_keys的权限是600,用户和组均为otheruser。
然后将私钥通过scp拷贝到本地机上。
2. 修改/etc/ssh/sshd_config
添加配置ÿ
最后
以上就是秀丽百合为你收集整理的linux普通用户生成密钥,CentOS下非root用户ssh key设置请教的全部内容,希望文章能够帮你解决linux普通用户生成密钥,CentOS下非root用户ssh key设置请教所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复