• 我先把脚本粘贴在这吧,方便大家观看,其中也是借鉴了不少其他大神的东西,这个脚本主要是用来监控服务器、用户、日志,还得创建备份,等等等等。最近学的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. input 标签中的checkd 添加与取消

    //获取是否选中 var isChecked = $('#cb').prop('checked'); //或 var isChecked = $('#cb').is(":checked&qu ...

  2. Arc083_F Collecting Balls

    传送门 题目大意 给定$N$,在$(1,0),(2,0)......(N,0)$和$(0,1),(0,2)...(0,N)$上都有$1$个机器人,同时给定$2N$个坐标$(x,y),x,y\in[1, ...

  3. eShopOnWeb

    eShopOnWeb https://www.cnblogs.com/sheng-jie/p/9616675.html 构建现代Web应用 1.引言 eShopOnWeb是基于ASP.NET Core ...

  4. redis的no-appendfsync-on-rewrite参数

    redis提供了两种持久化机制,rdb和aof. 关于aof的原理,类似于预写日志,不再解释.其中几个选项如下: appendfsync always:总是写入aof文件,并完成磁盘同步appendf ...

  5. CAS环境搭建-证书方式(https连接)

    一.教程前言 1 教程目的:从头到尾细细道来单点登录服务器及客户端应用的每个步骤 2 单点登录(SSO):请看<CAS简介> 3 本教程使用的SSO服务器是Yelu大学研发的CAS(Cen ...

  6. 【HTML代码】访问页面时,拨打页面中的电话号码

      这两天在写HTML页面今天要实现一个手机用户访问页面的时候,如果页面中有电话号码,点击可以打电话或者是发信息,之前没做过今天刚听说感觉很高大上会很难,实际上简单的让我内牛满面啊,,  小婊砸 (* ...

  7. 机器学习:逻辑回归(OvR 与 OvO)

    一.基础理解 问题:逻辑回归算法是用回归的方式解决分类的问题,而且只可以解决二分类问题: 方案:可以通过改造,使得逻辑回归算法可以解决多分类问题: 改造方法: OvR(One vs Rest),一对剩 ...

  8. Python函数(六)-嵌套函数

    嵌套函数就是在一个函数里再嵌套一个或多个函数 # -*- coding:utf-8 -*- __author__ = "MuT6 Sch01aR" def First(): pri ...

  9. debian7 安装VMware Tools

    前提:需要安装gcc.kernel 1. apt-get install gcc 2. apt-get install kernel 问题描述: 安装时如果提示更换介质 :请把标有 " de ...

  10. 使用pip一次升级所有安装的Python包(太牛了)

    import pip from subprocess import call for dist in pip.get_installed_distributions(): call("pip ...