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

    public class CommandParamter { public static void main(String[] args) { // TODO Auto-generated metho ...

  2. Milking Time(DP)

    个人心得:一开始自己找状态,是这么理解的,只要前面一个满足就等于此时的值加上d(n-1),否则就是不挖此时的比较d(n-1)和 d(n-2)+cost,不过仔细一想忽略了很多问题,你无法确定n-2和此 ...

  3. Oracle的启动过程

    在Windows操作系统平台下,可以使用SQL*Plus.OEM和系统服务管理等方式进行数据库的启动与关闭操作.数据库启动分为3个步骤:创建并启动数据库实例.装载数据库和打开数据库.数据库的关闭过程与 ...

  4. Angular5学习笔记 - 集成Bootstrap、Jquery、Tether(三)

    一.添加配置 cnpm i bootstrap jquery tether --save 添加后效果 二.配置添加样式和js的引用 打开.angular-cli.json文件,在styles和scri ...

  5. 在CentOS上安装Java开发环境:使用yum安装jdk

    请参考百度经验:http://jingyan.baidu.com/article/4853e1e51d0c101909f72607.html 如果您阅读过此文章有所收获,请为我顶一个,如果文章中有错误 ...

  6. 蓝桥杯 基础练习 BASIC-23 芯片测试

    基础练习 芯片测试   时间限制:1.0s   内存限制:512.0MB 问题描述 有n(2≤n≤20)块芯片,有好有坏,已知好芯片比坏芯片多. 每个芯片都能用来测试其他芯片.用好芯片测试其他芯片时, ...

  7. python with open as f 写韩文中文乱码

    python3和python2的写法不一样具体如下: python3: with open(r'd:\ssss.txt','w',encoding='utf-8') as f: f.write(u'中 ...

  8. 未在本地计算机上注册 Microsoft.ACE.OLEDB.12.0 提供程序

    Visual Studio 8使用了Access数据库,provider选择了ACE.OLEDB,但是运行时出现了错误,提示未在本地计算机上注册"Microsoft.ACE.OLEDB.12 ...

  9. 10-12C#基础--运算符

    10-12C#基础--运算符 课前作业:班级内人数的姓名和年龄,分别写出之后并汇总. 一.运算符的分类 1.数学运算符(7个) 1)+(加号) 例: 2)-(减号) 例: 3)*(乘号) 例: 4)/ ...

  10. docker 笔记(6)网络

    docker network ls   默认docker安装时会创建3个网络 none网络 one 网络就是什么都没有的网络.挂在这个网络下的容器除了 lo,没有其他任何网卡.容器创建时,可以通过 - ...