Shell交互批量更改主机名的方法
程序员文章站
2022-07-04 18:37:01
需求分析:
1、ssh公钥拷贝,提供无密码管理。
2、批量同...
需求分析:
1、ssh公钥拷贝,提供无密码管理。
2、批量同步hosts文件到多台主机。
3、批量修改主机名。
实现:
首先编辑一份用于同步到多台主机的hosts文件
vi /etc/hosts 192.168.0.1 server1 192.168.0.2 server2 192.168.0.3 server3 192.168.0.4 server4 192.168.0.5 server5 192.168.0.6 server6 192.168.0.7 server7 192.168.0.8 server8 192.168.0.9 server9 192.168.0.10 server10
然后编辑shell脚本:
vi changename.sh #!/bin/bash # this is a shell script to change hostname # version 0.1 # created in 2015.8.11 # creator edison export path=$path export user=root export snamepre=server export passwd=test01 #定义密码 for i in {1..10}; do /usr/bin/expect << eof ##这里用到了expect完成了确认yes和密码输入交互 spawn ssh-copy-id -i /root/.ssh/id_rsa.pub $user@$snamepre$i expect { "(yes/no)?" {send "yes\r";exp_continue} "password:" {send "$passwd\r"} } interact expect eof eof ssh $user@$snamepre$i "sed -i s/^host.*/hostname=$snamepre$i/ /etc/sysconfig/network"; scp /etc/hosts $user@$snamepre$i:/etc/hosts; done;
这里用到了expect完成自动交互确认和密码输入。
expect是一个免费的编程工具语言,用来实现自动和交互式任务进行通信,而无需人的干预。expect的作者don libes在1990年 开始编写expect时对expect做有如下定义:expect是一个用来实现自动交互功能的软件套件 (expect [is a] software suite for automating interactive tools)。使用它系统管理员 的可以创建脚本用来实现对命令或程序提供输入,而这些命令和程序是期望从终端(terminal)得到输入,一般来说这些输入都需要手工输入进行的。
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果友谊大家可以留言交流。