摘要:
指定加密算法生成ras文件 ssh-keygen -t rsa 将id_rsa.pub分发给目标服务器 ssh-copy-id root@node01 说明 ~/.ssh/authorized_keys文件放置公匙文件 另一种追加公匙的方式:cat ~/.ssh/id_rsa.pub | ssh - 阅读全文
摘要:
1 脚本 #! /bin/bash #判断参数个数 if [ $# -lt 1] then echo "The args is not enough!" exit; fi #遍历集群所有机器 for host in node01 node02 node03 node04 do #遍历所有文件 for 阅读全文