吉普 发表于 2023-9-22 01:22:38

shell批量执行命令与文件传输脚本

shell批量执行命令与文件传输脚本

需求:

对未进行主机信任操作的服务器进行批量操作
实现:

由于ssh只能在交互模式中输入服务器密码进行登录登操作,不便于进行大批量服务器进行巡检或日志采集。sshpass恰好又解决了这个问题,使用ssh -p passwd可以实现命令行输入密码操作,便于进行规模巡检
脚本使用方法:

<ol>首先需要在脚本执行机器上安装sshpass,可以使用yum进行安装
# yum方式安装
yum -y install sshpasstools.sh脚本以及使用方式
#!/bin/bash# 利用sshpass实现对服务器进行批量操作arg_num=$#file=$2cmd=$4c1=$1c3=$3c4=$4c5=$5c6=$6function main(){                if [ $arg_num -ne 4 ] && [[ $c1 != "-f" ]]      then                errorMessage                exit 1      elif [[ $c3 = "-c" ]]      then                valus                doCommand      elif [[ $c3 = "-l" ]] && [[ $c5 = "-s" ]]      then      # sh tools.sh -f hostlist -l hostlist -s /home/      # scp -P 22022 hostlist 192.168.1.1:/home                valus                doScpLocalToServer      elif [[ $c3 = "-s" ]] && [[ $c5 = "-l" ]]      then                valus                doScpServerToLocal      else                errorMessage      fi}function doScpLocalToServer(){      for ip in $iplist      do               for_num=`expr $for_num + 1`                pd=`echo $passwordlist | awk -v k=$for_num '{print $k}'`                echo -e "\033[32m ->->->->->->->->->->$ip$ip$ip
页: [1]
查看完整版本: shell批量执行命令与文件传输脚本