Shell-批量巡检服务器脚本

文件说明

该Shell脚本旨在针对大量Linux服务器的巡检提供一种相对自动化的解决方案。脚本组成有三部分:shellsh.sh、checksh.sh、file.txt;这三个文件需放在一个文件夹下以root权限执行,缺一不可。

脚本用法

将要巡检的服务器的IP地址和对应的密码全部放入file.txt中保存,每行一个IP对应一个密码即可。然后用如下命令运行:

#./ shellsh.sh file.txt192.168.182.143 123456

其中file.txt可以更换文件名,192.168.182.143为你想保存巡检日志的到哪个服务器的服务器IP,123456为该服务器的密码。

运行结果

运行完后会在192.168.182.143服务器的/tmp目录下升成一个目录,即:GatherLogDirectory这个目录下即存放的是被巡检的服务器的巡检日志,这些日志以被巡检的服务器的IP命名,形如:192.168.182.146.log。在被巡检的服务器上会升成两个目录即:CheckScript、 LocalServerLogDirectory;其中CheckScript中是checksh.sh脚本,LocalServerLogDirectory中存放的是checksh.sh在该服务器上运行后升成的日志。

测试结果

我只在虚拟机上的三台Linux系统上测试过,分别是Ubuntu、RedHat、Kali。运行正常,平均巡检一个服务器花费3分钟。

脚本代码

shellsh.sh:

#!/bin/bash
login_info=$1
gather_server_ip=$2
gather_server_password=$3
grep_ip=`ifconfig | grep ‘\([[:digit:]]\{1,3\}\.\)\{3\}[[:digit:]]\{1,3\}‘ --color=auto -o | sed -e ‘2,5d‘`

GatherPath="/tmp/GatherLogDirectory"
CheckScriptPath="/tmp/CheckScript"

if [ $# -ne 3 ]; then
    echo -e "Parameters if fault!\n"
    echo -e "Please using:$0 login_info gather_server_ip\n"
    echo -e "For example: $0 IpAndPassword.txt $grep_ip\n"
    exit;
fi

if [ ! -x "$GatherPath" ];then
    mkdir "$GatherPath"
    echo -e "The log‘s path is: $GatherPath"
fi

cat $login_info | while read line

do

    server_ip=`echo $line|awk ‘{print $1}‘`
    server_password=`echo $line|awk ‘{print $2}‘`
    login_server_command="ssh -o StrictHostKeyChecking=no [email protected]$server_ip"
    scp_gather_server_checksh="scp checksh.sh [email protected]$server_ip:$CheckScriptPath"

/usr/bin/expect<<EOF
        set timeout 20
        spawn $login_server_command
        expect {
                   "*yes/no" { send "yes\r"; exp_continue }
                   "*password:" { send "$server_password\r" }
               }
	    expect "Permission denied, please try again." {exit}
        expect "#" { send "mkdir $CheckScriptPath\r"}
        expect eof
        exit

EOF

/usr/bin/expect<<EOF
        set timeout 20
        spawn $scp_gather_server_checksh
        expect {
                   "*yes/no" { send "yes\r"; exp_continue }
                   "*password:" { send "$server_password\r" }
               }
		expect "Permission denied, please try again." {exit}
		expect "Connection refused" {exit}
        expect "100%"
        expect eof
        exit

EOF

    
/usr/bin/expect<<EOF
        set timeout 60
        spawn $login_server_command
        expect {
                   "*yes/no" { send "yes\r"; exp_continue }
                   "*password:" { send "$server_password\r" }
               }
	    expect "Permission denied, please try again." {exit}
        expect "#" { send "cd $CheckScriptPath;./checksh.sh $gather_server_ip $gather_server_password\r"}
        expect eof
        exit

EOF

done

checksh.sh

#!/bin/bash
########################################################################################
#Function:
#This script checks the system‘s information,disks‘s information,performance,etc...of the
#server
#
#Author:
#By Jack Wang
#
#Company:
#ShaanXi Great Wall Information Co.,Ltd.
########################################################################################

########################################################################################
#
#GatherServerIpAddress is the server‘s IP address that gather the checking log
#GatherServerPassword is the server‘s IP address that gather the checking log
#
########################################################################################
GatherServerIpAddress=$1
GatherServerPassword=$2

########################################################################################
#GetTheIpCommand is a command that you can get the IP address
########################################################################################
GetTheIpCommand=`ifconfig | grep ‘\([[:digit:]]\{1,3\}\.\)\{3\}[[:digit:]]\{1,3\}‘ --color=auto -o | sed -e ‘2,5d‘`

########################################################################################
#LogName is a command that Your logs‘name
########################################################################################
LogName=`ifconfig|grep ‘\([[:digit:]]\{1,3\}\.\)\{3\}[[:digit:]]\{1,3\}‘ --color=auto -o|sed -e ‘2,5d‘``echo "-"``date +%Y%M%d`

########################################################################################
#
#GatherLogPath is a path that collecting log path
#LocalServerLogPath is local log path
#
########################################################################################
GatherServerLogPath="/tmp/GatherLogDirectory"
LocalServerLogPath="/tmp/LocalServerLogDirectory"

########################################################################################
#LinuxOsInformation is function that usege to collect OS‘s information
########################################################################################
LinuxOsInformation(){
Hostname=`hostname`
UnameA=`uname -a`
OsVersion=`cat /etc/issue | sed ‘2,4d‘`
Uptime=`uptime|awk ‘{print $3}‘|awk -F "," ‘{print $1}‘`
ServerIp=`ifconfig|grep "inet"|sed ‘2,4d‘|awk -F ":" ‘{print $2}‘|awk ‘{print $1}‘`
ServerNetMask=`ifconfig|grep "inet"|sed ‘2,4d‘|awk -F ":" ‘{print $4}‘|awk ‘{print $1}‘`
ServerGateWay=`netstat -r|grep "default"|awk ‘{print $2}‘`
SigleMemoryCapacity=`dmidecode|grep -P -A5 "Memory\s+Device"|grep "Size"|grep -v "Range"|grep ‘[0-9]‘|awk -F ":" ‘{print $2}‘|sed ‘s/^[ \t]*//g‘`
MaximumMemoryCapacity=`dmidecode -t 16|grep "Maximum Capacity"|awk -F ":" ‘{print $2}‘|sed ‘s/^[ \t]*//g‘`
NumberOfMemorySlots=`dmidecode -t 16|grep "Number Of Devices"|awk -F ":" ‘{print $2}‘|sed ‘s/^[ \t]*//g‘`
MemoryTotal=`cat /proc/meminfo|grep "MemTotal"|awk ‘{printf("MemTotal:%1.0fGB\n",$2/1024/1024)}‘|awk -F ":" ‘{print $2}‘`
PhysicalMemoryNumber=`dmidecode|grep -A16 "Memory Device"|grep "Size:"|grep -v "No Module Installed"|grep -v "Range Size:"|wc -l`
ProductName=`dmidecode|grep -A10 "System Information"|grep "Product Name"|awk -F ":" ‘{print $2}‘|sed ‘s/^[ \t]*//g‘`
SystemCPUInfomation=`cat /proc/cpuinfo|grep "name"|cut  -d: -f2|awk ‘{print "*"$1,$2,$3,$4}‘|uniq -c|sed ‘s/^[ \t]*//g‘`

echo -e "Hostname|$Hostname\nUnamea|$UnameA\nOsVersion|$OsVersion\nUptime|$Uptime\nServerIp|$ServerIp\nServerNetMask|$ServerNetMask\nServerGateWay|$ServerGateWay\nSigleMemoryCapacity|$SigleMemoryCapacity\nMaximumMemoryCapacity|$MaximumMemoryCapacity\nNumberOfMemorySlots|$NumberOfMemorySlots\nMemoryTotal|$MemoryTotal\nPhysicalMemoryNumber|$PhysicalMemoryNumber\nProductName|$ProductName\nSystemCPUInformation|$SystemCPUInfomation"

}

PerformanceInfomation (){
CPUIdle=`top -d 2 -n 1 -b|grep C[Pp][Uu]|grep id|awk ‘{print $5}‘|awk -F "%" ‘{print $1}‘`
CPUloadAverage=`top -d 2 -n 1 -b|grep "load average:"|awk -F ":" ‘{print $5}‘|sed ‘s/^[ \t]*//g‘`
ProcessNumbers=`top -d 2 -n 1 -b|grep "Tasks"|awk -F "[: ,]" ‘{print $3}‘`
ProcessRunning=`top -d 2 -n 1 -b|grep "Tasks"|awk -F "[: ,]" ‘{print $8}‘`
ProcessSleeping=`top -d 2 -n 1 -b|grep "Tasks"|awk -F "[: ,]" ‘{print $11}‘`
ProcessStoping=`top -d 2 -n 1 -b|grep "Tasks"|awk -F "[: ,]" ‘{print $16}‘`
ProcessZombie=`top -d 2 -n 1 -b|grep "Tasks"|awk -F "[: ,]" ‘{print $21}‘`
UserSpaceCPU=`top -d 2 -n 1 -b|grep ‘C[Pp][Uu]‘|head -1|awk -F "[: ,%]" ‘{print $4}‘`
SystemSpaceCPU=`top -d 2 -n 1 -b|grep ‘C[Pp][Uu]‘|head -1|awk -F "[: ,%]" ‘{print $8}‘`
ChangePriorityCPU=`top -d 2 -n 1 -b|grep ‘C[Pp][Uu]‘|head -1|awk -F "[: ,%]" ‘{print $12}‘`
WaitingCPU=`top -d 2 -n 1 -b|grep ‘C[Pp][Uu]‘|head -1|awk -F "[: ,%]" ‘{print $19}‘`
HardwareIRQCPU=`top -d 2 -n 1 -b|grep ‘C[Pp][Uu]‘|head -1|awk -F "[: ,%]" ‘{print $23}‘`
SoftwareIRQCPU=`top -d 2 -n 1 -b|grep ‘C[Pp][Uu]‘|head -1|awk -F "[: ,%]" ‘{print $27}‘`
MemUsed=`top -d 2 -n 1 -b|grep "Mem"|awk -F "[: ,]" ‘{print $11}‘|tr -d "a-zA-Z"|awk ‘{printf("%dM\n",$1/1024)}‘`
MemFreeP=`top -d 2 -n 1 -b|grep "Mem"|awk -F "[: ,]" ‘{print $16}‘|tr -d "a-zA-Z"|awk ‘{printf("%dM\n",$1/1024)}‘`
MemBuffersP=` top -d 2 -n 1 -b|grep "Mem"|awk -F "[: ,]" ‘{print $22}‘|tr -d "a-zA-Z"|awk ‘{printf("%dM\n",$1/1024)}‘`
CacheCachedP=`top -d 2 -n 1 -b|grep "Swap"|awk -F "[: ,]" ‘{print $24}‘|tr -d "a-zA-Z"|awk ‘{printf("%dM\n",$1/1024)}‘`
CacheTotal=`top -d 2 -n 1 -b|grep "Swap"|awk -F "[: ,]" ‘{print $4}‘|tr -d "a-zA-Z"|awk ‘{printf("%dM\n",$1/1024)}‘`
CacheUsed=`top -d 2 -n 1 -b|grep "Swap"|awk -F "[: ,]" ‘{print $14}‘|tr -d "a-zA-Z"|awk ‘{printf("%dM\n",$1/1024)}‘`
CacheFree=`top -d 2 -n 1 -b|grep "Swap"|awk -F "[: ,]" ‘{print $18}‘|tr -d "a-zA-Z"|awk ‘{printf("%dM\n",$1/1024)}‘`

echo -e "CPUIdle|$CPUIdle\nCPUloadAverage|$CPUloadAverage\nProcessNumbers|$ProcessNumbers\nProcessRunning|$ProcessRunning\nProcessSleeping|$ProcessSleeping\nProcessStoping|$ProcessStoping\nProcessZombie|$ProcessZombie\nUserSpaceCPU|$UserSpaceCPU\nSystemSpaceCPU|$SystemSpaceCPU\nChangePriorityCPU|$ChangePriorityCPU\nWaitingCPU|$WaitingCPU\nHardwareIRQCPU|$HardwareIRQCPU\nSoftwareIRQCPU|$SoftwareIRQCPU\nMemUsed|$MemUsed\nMemFreeP|$MemFreeP\nMemBuffersP|$MemBuffersP\nCacheCachedP|$CacheCachedP\nCacheTotal|$CacheTotal\nCacheUsed|$CacheUsed\nCacheFree|$CacheFree\n"
}

OprateSystemSec () {
echo ‘======================UserLogin======================‘
w

echo ‘======================FileUsed=======================‘
df -ah

echo ‘======================dmesgError=====================‘
dmesg | grep error

echo ‘======================dmesgFail======================‘
dmesg | grep Fail

echo ‘======================BootLog========================‘
more /var/log/boot.log | grep -V "OK" | sed ‘1,6d‘

echo ‘======================route -n=======================‘
route -n
echo ‘======================iptables -L====================‘
iptables -L
echo ‘======================netstat -lntp==================‘
netstat -lntp
echo ‘======================netstat -antp==================‘
netstat -antp
echo ‘======================BootLog========================‘
netstat -s
echo ‘======================netstat -s=====================‘
last
echo ‘======================du -sh /etc/===================‘
du -sh /etc/
echo ‘======================du -sh /boot/==================‘
du -sh /boot/
echo ‘======================du -sh /dev/===================‘
du -sh /dev/
echo ‘======================df -h==========================‘
df -h
echo ‘======================mount | column -t==============‘
mount | column -t

}

TopAndVmstat(){
top -d 2 -n 1 -b
vmstat 1 10
}

CheckGatherLog(){

if [ -f "$LocalServerLogPath/$GetTheIpCommand.log" ];then
       rm -rf $LocalServerLogPath/$GetTheIpCommand.log
fi

if [ ! -x "$LocalServerLogPath" ];then
    mkdir "$LocalServerLogPath"
fi

if [ ! -f "$LocalServerLogPath/$GetTheIpCommand.log" ];then
    touch $LocalServerLogPath/$GetTheIpCommand.log
    LinuxOsInformation>>$LocalServerLogPath/$GetTheIpCommand.log
    PerformanceInfomation>>$LocalServerLogPath/$GetTheIpCommand.log
    OprateSystemSec>>$LocalServerLogPath/$GetTheIpCommand.log
    TopAndVmstat>>$LocalServerLogPath/$GetTheIpCommand.log
fi
}

CheckGatherLog

SCP_LOG_TO_GATHER_SERVER="scp $LocalServerLogPath/$GetTheIpCommand.log [email protected]$GatherServerIpAddress:$GatherServerLogPath"

/usr/bin/expect<<EOF
        set timeout 50
        spawn $SCP_LOG_TO_GATHER_SERVER
        expect {
                "*yes/no)?" 
                 { 
                     send "yes\n"
                     "*password:*" {send "GatherServerPassword\n"}
                 } 
                "*password:"         
                 {
                     send "$GatherServerPassword\n"
                 }
               }
        expect "*password:"  { send "$GatherServerPassword\n" }
        expect "100%"
        expect eof

EOF

file.txt内容形式

192.168.182.143  123456
192.168.182.129  123456
192.168.182.146  123456

注:192.168.182.143是被巡检的服务器ip,123456是被巡检的服务器密码。

声明:此脚本将巡检结果用awk和sed以及grep进行了过滤,以便格式化显示和excel进行处理。由于水平有限,如果有大神认为还有更好的解决方案或者这个脚本还有改进的地方,请指出。我们大家共同学习,共同进步。

个人QQ:1299039410

时间: 2024-10-07 20:50:41

Shell-批量巡检服务器脚本的相关文章

shell批量处理图片服务器

最近领导给了个任务,要处理线上图片服务器,不需要的图片把它删除. 思路:首先把线上的要用到的图片从数据库导出来,表里面有图片路径,然后把路径生成一张txt 最后从txt文件里读取每张图片路径,再进行相应处理. 以下是用到的脚本,由于图片比较多,大概有17W张左右,花了2个小时,把脚本贴上来,供以后参考 #!/bin/bash cat /usr/local/src/goodimg.txt | while read line   #goodimg.txt是从数据库导出的图片的txt文本 do dst

史上图形最简单Linux-Unix-Windows批量管理服务器软件工具

Windows 下 批量管理,批量监控,批量操作,批量安全扫描 linux Solaris Aix HP-Unix Windows 等操作系统界面最简洁的图形工具. 批量执行多台服务器命令,批量修改密码,批量执行服务器脚本,批量上传文件,解放你的双手,五分钟批量执行上千台服务器命令. Unix 实验室服务器批量管理监控系统,简称 UnixShellManager UnixShellManager 分简装版, 标准版,企业版. UnixShellManager 实验室批量管理监控系统,能够实现对

并发批量管理500台以上服务器脚本分享(shell版)

也许很多人认为shell不能并发任务,其实可通过其它一些方式来实现.下面的脚本是我批量快速管理500+服务器脚本,阅读该脚本前建议先看<自动执行远程主机命令expect脚本>.<自动远程拷贝expect脚本>和<getopt:命令行选项.参数处理> 用法: Usage: ./multi_main.sh [-h|--help] [-v|-V|--version] [-l|--iplist ... ] [-c|--config ... ] [-t|--sshtimeout

shell批量多台服务器数据copy

实验服务器两台: 192.168.77.189 192.168.77.190 服务器免密钥登录设置: [[email protected]_168_77_189 ~]# ssh-keygenGenerating public/private rsa key pair.Enter file in which to save the key (/root/.ssh/id_rsa): Enter passphrase (empty for no passphrase): Enter same pass

PXE项目实战,通过编写脚本自动安装系统时批量部署服务器所需要的所有服务

由于上一篇是有关PXE的基础配置,所以有些过程省略,有不便的还请谅解. 案例需求:    1. 在局域网 192.168.1.0/24 内部署一台 PXE 装机服务器(CentOS 6.5系统)        操作系统:CentOS 6.5      ==> 关闭 iptables 防火墙.关闭SELinux机制,进图形桌面        网卡连接:VMnet1    ==> 关闭 NetworkManager 服务 2. 提供带图片背景.可选择的PXE启动菜单,支持为客户机裸机装配64位的

工程师技术(五):Shell脚本的编写及测试、重定向输出的应用、使用特殊变量、编写一个判断脚本、编写一个批量添加用户脚本

一.Shell脚本的编写及测 目标: 本例要求两个简单的Shell脚本程序,任务目标如下: 1> 编写一个面世问候 /root/helloworld.sh 脚本,执行后显示出一段话"Hello World!!"   2> 编写一个能输出系统信息的 /root/sysinfo 脚本,执行后依次输出当前红帽系统的版本信息.当前使用的内核版本.当前系统的主机名 方案: 规范Shell脚本的一般组成: 1> #! 环境声明(Sha-Bang)    2> # 注释文本 

SQL Server自动化运维系列——批量执行SQL脚本(Power Shell)

需求描述 一般在生产环境中,在投产的情况下,需要批量的来执行SQL脚本文件,来完成整个投产,如果投产文件比较多的情况下,无疑这是一个比较痛苦的过程,所以本篇通过PowerShell脚本来批量完成. 监控脚本 <#批量执行SQL脚本文件#> <#===========================================#> $serverInstance="WUXUEL1" $Database="111" #$userName=&q

Linux批量管理服务器小工具--PSSH

Linux批量管理服务器小工具--PSSH 一.简介 pssh -- parallel ssh program pssh  is  a program for executing ssh in parallel on a number of hosts.  It provides features such as sending input to all of the processes, passing a password to ssh, saving output to files, an

烂泥:学习tomcat之通过shell批量管理多个tomcat

本文由ilanniweb提供友情赞助,首发于烂泥行天下 想要获得更多的文章,可以关注我的微信ilanniweb 公司的业务是使用tomcat做web容器,为了更有效的利用服务器的性能,我们一般部署多个tomcat做业务的负载均衡. 一.业务需求 目前一台服务器上,部署了4个tomcat,也就相当于4个节点.平时在维护业务时,需要我们一个一个tomcat实例进行单独的维护,感觉很不方便,所以就有了这篇文章. 但是为了更方便的管理这4个tomcat,我这边做了两方面的工作,一是把所有的tomcat工