免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1188 | 回复: 0
打印 上一主题 下一主题

无密码SSH到其他节点的配置 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-06-14 09:52 |只看该作者 |倒序浏览
   要并行一个软件,需要无密码验证的从主节点SSH到其他节点,条件是个个节点共享头节电上的/home文件夹及软件所在目录
一种配置方法如下:
$cd ~/
$vi .bashrc
$cat .bashrc
# .bashrc
# User specific aliases and functions
# Source global definitions
if [ -f /etc/bashrc ]; then
        . /etc/bashrc
fi
export P4_RSHCOMMAND=ssh
$vi .bash_profile
$cat .bash_profile
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
        . ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin:/usr/local/rsoft/bin:/usr/bin:.
export PATH
unset USERNAME
$. .bashrc
$. .bash_profile
$ssh-keygen -t dsa
Generating public/private dsa key pair.
Enter file in which to save the key (/home/chasetang/.ssh/id_dsa):
Created directory '/home/chasetang/.ssh'.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /home/chasetang/.ssh/id_dsa.
Your public key has been saved in /home/chasetang/.ssh/id_dsa.pub.
The key fingerprint is:
20:e0:c3:24:4a:e2:1b:ed:e3:4c:fc:a5:c6:67:4a:44 chasetang@fullwave01
$cd .ssh/
$ls
id_dsa  id_dsa.pub
$cp id_dsa.pub authorized_keys2
$ssh fullwave02
/* Succeed! */
               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/13724/showart_127816.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP