• 我先把脚本粘贴在这吧,方便大家观看,其中也是借鉴了不少其他大神的东西,这个脚本主要是用来监控服务器、用户、日志,还得创建备份,等等等等。最近学的shell比较多,就用这个来练练手了,比较简单,大家凑合看吧。
  • #! /bin/bash
    10 # unset any variable which system may be using
    11
    12 # clear the screen
    13 clear
    14
    15 unset tecreset os architecture kernelrelease internalip externalip nameserver loadaverage
    16
    17 while getopts iv name
    18 do
    19 case $name in
    20 i)iopt=1;;
    21 v)vopt=1;;
    22 *)echo "Invalid arg";;
    23 esac
    24 done
    25
    26 if [[ ! -z $iopt ]]
    27 then
    28 {
    29 wd=$(pwd)
    30 basename "$(test -L "$0" && readlink "$0" || echo "$0")" > /tmp/scriptname
    31 scriptname=$(echo -e -n $wd/ && cat /tmp/scriptname)
    32 su -c "cp $scriptname /usr/bin/monitor" root && echo "Congratulations! Script Installed, now run monitor Command" || echo "Installation failed"
    33 }
    34 fi
    35
    36 if [[ ! -z $vopt ]]
    37 then
    38 {
    39 echo -e "tecmint_monitor version 0.1\nDesigned by Tecmint.com\nReleased Under Apache 2.0 License"
    40 }
    41 fi
    42
    43 if [[ $# -eq 0 ]]
    44 then
    45 {
    46
    47
    48 # Define Variable tecreset
    49 tecreset=$(tput sgr0)
    50
    51 # Check if connected to Internet or not
    52 ping -c 1 google.com &> /dev/null && echo -e '\E[32m'"Internet: $tecreset Connected" || echo -e '\E[32m'"Internet: $tecreset Disconnected"
    53
    54 # Check OS Type
    55 os=$(uname -o)
    56 echo -e '\E[32m'"Operating System Type :" $tecreset $os
    57
    58 # Check OS Release Version and Name
    59 cat /etc/os-release | grep 'NAME\|VERSION' | grep -v 'VERSION_ID' | grep -v 'PRETTY_NAME' > /tmp/osrelease
    60 echo -n -e '\E[32m'"OS Name :" $tecreset && cat /tmp/osrelease | grep -v "VERSION" | cut -f2 -d\"
    61 echo -n -e '\E[32m'"OS Version :" $tecreset && cat /tmp/osrelease | grep -v "NAME" | cut -f2 -d\"
    62
    63 # Check Architecture
    64 architecture=$(uname -m)
    65 echo -e '\E[32m'"Architecture :" $tecreset $architecture
    66
    67 # Check Kernel Release
    68 kernelrelease=$(uname -r)
    69 echo -e '\E[32m'"Kernel Release :" $tecreset $kernelrelease
    70
    71 # Check hostname
    72 echo -e '\E[32m'"Hostname :" $tecreset $HOSTNAME
    73
    74 # Check Internal IP
    75 internalip=$(hostname -I)
    76 echo -e '\E[32m'"Internal IP :" $tecreset $internalip
    77
    78 # Check External IP
    79 externalip=$(curl -s ipecho.net/plain;echo)
    80 echo -e '\E[32m'"External IP : $tecreset "$externalip
    81
    82 # Check DNS
    83 nameservers=$(cat /etc/resolv.conf | sed '1 d' | awk '{print $2}')
    84 echo -e '\E[32m'"Name Servers :" $tecreset $nameservers
    85
    86 # Check Logged In Users
    87 who>/tmp/who
    88 echo -e '\E[32m'"Logged In users :" $tecreset && cat /tmp/who
    89
    90 # Check RAM and SWAP Usages
    91 free -h | grep -v + > /tmp/ramcache
    92 echo -e '\E[32m'"Ram Usages :" $tecreset
    93 cat /tmp/ramcache | grep -v "Swap"
    94 echo -e '\E[32m'"Swap Usages :" $tecreset
    95 cat /tmp/ramcache | grep -v "Mem"
    96
    97 # Check Disk Usages
    98 df -h| grep 'Filesystem\|/dev/sda*' > /tmp/diskusage
    99 echo -e '\E[32m'"Disk Usages :" $tecreset
    100 cat /tmp/diskusage
    101
    102 # Check Load Average
    103 loadaverage=$(top -n 1 -b | grep "load average:" | awk '{print $10 $11 $12}')
    104 echo -e '\E[32m'"Load Average :" $tecreset $loadaverage
    105
    106 # Check System Uptime
    107 tecuptime=$(uptime | awk '{print $3,$4}' | cut -f1 -d,)
    108 echo -e '\E[32m'"System Uptime Days/(HH:MM) :" $tecreset $tecuptime
    109
    110 # Unset Variables
    111 unset tecreset os architecture kernelrelease internalip externalip nameserver loadaverage
    112
    113 # Remove Temporary Files
    114 rm /tmp/osrelease /tmp/who /tmp/ramcache /tmp/diskusage
    115 }
    116 fi
    117 shift $(($OPTIND -1))
  • 这个脚本可以安装也可以直接运行,看你自己的喜好了。无毒无害,你可以试一试,哈哈哈。
    •   安装命令:./tecmint_monitor.sh -i
    •   执行脚本命令:./tecmint_monitor.sh
    •   之后你就可以在任意的一个地方去执行monitor命令,就是这么简单:
    •   你运行命令就会获得下面这些各种各样和系统相关的信息:
      • 互联网连通性
      • 操作系统类型
      • 操作系统名称
      • 操作系统版本
      • 架构
      • 内核版本
      • 主机名
      • 内部IP
      • 外部IP
      • 域名服务器
      • 已登录用户
      • 内存使用率
      • 交换分区使用率
      • 磁盘使用率
      • 平均负载
      • 系统开机时间
    • 这个是运行效果图:
  •   这个脚本其实还是比较好用的,日常的一些监控系统的活都让它干了,这样我自己就比较轻松了。

监控linux系统的简易脚本的更多相关文章

  1. 监控 Linux 系统的 7 个命令行工具

    监控 Linux 系统的 7 个命令行工具: " 深入 关于Linux最棒的一件事之一是你能深入操作系统,来探索它是如何工作的,并寻找机会来微调性能或诊断问题.这里有一些基本的命令行工具,让 ...

  2. 红帽linux系统开机自启动脚本。

    其实很多东西在最后完成以后会觉得也就那样,有意思的是探究的过程. 前段时间老板要求把一个程序做成linux系统开机自启动脚本的模式. 首先你需要写一个脚本. 我这边建立了一个.sh的脚本,就是用脚本启 ...

  3. shell脚本监控Linux系统性能指标

    2016-11-04 22:41 原作者不详 分类: Linux(7) 在服务器运维过程中,经常需要对服务器的各种资源进行监控, 例如:CPU的负载监控,磁盘的使用率监控,进程数目监控等等,以在系统出 ...

  4. 使用Python监控Linux系统

    一.Python编写的监控工具 一.多功能系统资源统计工具dstat 1.dstat介绍 dstat是一个用Python语言实现的多功能系统资源统计工具,用来取代Linux下的vmstat.iosta ...

  5. 第6章:使用Python监控Linux系统

    1.Python编写的监控工具 1).多功能系统资源统计工具dstat dstat是一个用Python编写的多功能系统资源统计工具,用来取代Linux下的vmstat,iostat,netstat和i ...

  6. linux系统带宽监测脚本

    服务器可能经常遇到服务器出带宽跑满,不知如何查询被哪个进程占用的情况,有一款开源的英文软件iftop功能比较强大可以查询相关信息,可能刚接触linux系统的朋友不太会使用,在此写了一个功能比较简单无需 ...

  7. 使用Prometheus监控Linux系统各项指标

    首先在Linux系统上安装一个探测器node explorer, 下载地址https://prometheus.io/docs/guides/node-exporter/ 这个探测器会定期将linux ...

  8. shell脚本监控Linux系统的登录情况

    一.登录日志记录 vi /etc/profile 在最后面添加一行: echo "`who`" > /var/log/login.log 二.监控日志文件 #!/bin/ba ...

  9. Shell 脚本来自动监控 Linux 系统的内存

    # vim /scripts/swap-warning.sh #!/bin/bash #提取本服务器的IP地址信息 IP=`ifconfig eth0 | grep "inet addr&q ...

随机推荐

  1. QQ帐户的申请与登陆(25 分)

    实现QQ新帐户申请和老帐户登陆的简化版功能.最大挑战是:据说现在的QQ号码已经有10位数了. 输入格式: 输入首先给出一个正整数N(≤),随后给出N行指令.每行指令的格式为:“命令符(空格)QQ号码( ...

  2. C#面向对象(二):封装和继承

    前文链接:C#面向对象(一):明确几个简单的概念作为开胃菜 面向对象开发有三大特性(特点 / 特征) : 封装, 继承, 多态.我们今天主要讨论封装和继承,多态会在下篇中讨论. 一.封装: 所谓封装, ...

  3. 四、python沉淀之路--元组

    一.元组基本属性 1.元组不能被修改,不能被增加.不能被删除 2.两个属性 tu.count(22)       #获取指定元素在元组中出现的次数tu.index(22)      #获取指定元素的缩 ...

  4. Http之ContentType

    引言: 在Http请求中,我们每天都在使用Content-type来指定不同格式的请求信息,但是却很少有人去全面了解content-type中允许的值有多少,这里将讲解Content-Type的可用值 ...

  5. springmvc 加载静态文件失败

    header.jsp,部分代码 <head> <title>QA|VIS_PLATFORM</title> <meta content="width ...

  6. Xcode工具特性

    1.注释 #pragma mark 注释说明#pragma mark - 分类/分组注释说明 2.自定义代码块. 3.多文本编辑框 View>>Assistant Editor

  7. 蓝桥杯 基础练习 BASIC-15 字符串对比

    基础练习 字符串对比   时间限制:1.0s   内存限制:512.0MB 问题描述 给定两个仅由大写字母或小写字母组成的字符串(长度介于1到10之间),它们之间的关系是以下4中情况之一: 1:两个字 ...

  8. 四川第七届 E Rectangle

    Rectangle frog has a piece of paper divided into nn rows and mm columns. Today, she would like to dr ...

  9. Mongodb 副本集的节点详细操作

    副本集操作 官方文档:https://docs.mongodb.com/v3.2/reference/method/js-replication/ 1 rs.add(){ _id: <int&g ...

  10. throw和throws的区别和联系

    突然发现今天诗兴大发,看来又得写点内容了. throw和throws对于Java程序员而言它们真的不是很陌生.但对于我这样的选手而言一提到它们的区别和联系就蒙圈了... 为了以后不蒙圈,今天就研究一下 ...