perl远程执行多台服务器shell命令

简介:
  在生成环境中通常运维需要执行非常多的重复命令,一台可能还好 多台就杯具了。尤其有时候要批量去更新多台服务器的文件,或者是删除。
   一个好运维都是懒惰的,所以自己写了个perl脚本可以远程去执行shell命令,很灵活。2个配置文件,一个管理服务器信息,一个放所需要执行的命令。
code:
#!/usr/bin/perl 
use strict; 
use Net::SSH::Expect; 
my @ssh_list; 
my $ssh_txt='ip_list.txt'; 
my $command_txt='command_txt.txt'; 
open FH,$ssh_txt; 
        while(<FH>){ 
        @ssh_list=split; 
        print "正在登陆".$ssh_list[0]."...\n"; 
        &ssh_conn("$ssh_list[0]","$ssh_list[1]","$ssh_list[2]","$ssh_list[3]"); 
        } 
        close    FH; 

sub    ssh_conn(){ 
                my($host,$port,$user,$pass) = @_; 
                my $ssh = Net::SSH::Expect->new( 
                                host        =>            $host, 
                                port        =>            $port, 
                                user        =>            $user, 
                                password                =>$pass, 
                                no_terminal         =>0, 
                                raw_pty =>1, 
                                timeout =>            3, 
                                ); 
                                                $ssh->debug(0); 
                                                $ssh->run_ssh() or die "SSH process coundn't start:$!"; 
                                                $ssh->waitfor( '\(yes\/no\)\?$', 1 ); #交互式修改密码,给予2秒的时间 
                                                $ssh->send("yes\n"); 
                                                $ssh->waitfor( 'password:\s*$/', 1); 
                                                $ssh->send("$ssh_list[3]"); 
                                                $ssh->send("su - root"); 
                                                $ssh->waitfor( 'password:\s*$/', 1); 
                                                $ssh->send("$ssh_list[4]"); 
                                                #$ssh->waitfor("#\s*",2); 
                                                open F1,$command_txt; 
                                                while(<F1>){ 


                                                my @command=split/\n/,$_; 
                                                print "$command[0]-->    "; 
                                                $ssh->exec("$command[0]"); 

                                                print "$ssh_list[0]命令执行完毕\n"; 


                                                } 
                                                close F1; 
                                                $ssh->close(); 
下面是2个文件内容。
[root@nagios script]# cat ip_list.txt 
192.168.2.101    22    mcshell     psswd    server1 
192.168.2.102    22    mcshell     psswd    server2 
192.168.2.103    22    mcshell     psswd    server3 
[root@nagios script]# cat command_txt.txt 
touch /home/mcshell/file1 
touch /home/mcshell/file2 
 
执行结果:
当然我这里为了测试方便,用了写的比较简单,大家也可以发挥想象,直接把复杂的shell或者perl密令直接放在command_txt.txt中。同样可以批量处理
 









本文转自 mcshell 51CTO博客,原文链接:http://blog.51cto.com/mcshell/988791,如需转载请自行联系原作者

目录
相关文章
|
23天前
|
监控 Linux Shell
|
4天前
|
Java Shell Windows
java Runtime.exec()执行shell/cmd命令:常见的几种陷阱与一种完善实现
java Runtime.exec()执行shell/cmd命令:常见的几种陷阱与一种完善实现
14 1
|
1月前
|
Web App开发 网络协议 Linux
linux命令总结(centos):shell常用命令汇总,平时用不到,用到就懵逼忘了,于是专门写了这篇论文,【便持续更新】
这篇文章是关于Linux命令的总结,涵盖了从基础操作到网络配置等多个方面的命令及其使用方法。
62 1
linux命令总结(centos):shell常用命令汇总,平时用不到,用到就懵逼忘了,于是专门写了这篇论文,【便持续更新】
|
1月前
|
分布式计算 Hadoop Shell
Hadoop-35 HBase 集群配置和启动 3节点云服务器 集群效果测试 Shell测试
Hadoop-35 HBase 集群配置和启动 3节点云服务器 集群效果测试 Shell测试
69 4
|
1月前
|
分布式计算 Hadoop Shell
Hadoop-36 HBase 3节点云服务器集群 HBase Shell 增删改查 全程多图详细 列族 row key value filter
Hadoop-36 HBase 3节点云服务器集群 HBase Shell 增删改查 全程多图详细 列族 row key value filter
57 3
|
1月前
|
分布式计算 监控 Hadoop
Hadoop-29 ZooKeeper集群 Watcher机制 工作原理 与 ZK基本命令 测试集群效果 3台公网云服务器
Hadoop-29 ZooKeeper集群 Watcher机制 工作原理 与 ZK基本命令 测试集群效果 3台公网云服务器
39 1
|
1月前
|
Shell 知识图谱
Shell printf 命令
10月更文挑战第3天
18 1
|
1月前
|
Shell PHP
Shell echo命令
10月更文挑战第3天
20 0
|
1月前
|
Shell
一个用于添加/删除定时任务的shell脚本
一个用于添加/删除定时任务的shell脚本
75 1