中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SHELL一些監控的腳本(模塊)

發布時間:2020-05-24 05:36:16 來源:網絡 閱讀:326 作者:vfast_肖松林 欄目:安全技術

1,apache的源碼安裝腳本

#!/bin/bash
##auther xiaosonglin
##date 2013-06-08


###apache install
PATH=`echo $PATH`
rpm -qa |grep httpd
if [ $? -eq 0 ];then
  echo "apache alredy install" >apac.log
  rpm -e httpd
else

    echo "apache not install" >>apac.log
     wget http://192.168.18.254/abc/httpd-2.2.16.tar.bz2  局域網類的地址
        if [ $? -ne 0 ];then
           echo "wget ERROR" >>apac.log
          else
              tar fjvx httpd-2.2.16.tar.bz2 
                 cd httpd-2.2.16
                 ./configure
              make && make install
       fi
fi

#######

一個httpd啟動腳本,放到/etc/init.d/下,可以使用service apache2 start|restart|status|stop    

中apache可自定義

#!/bin/bash
##apache replace httpd
##auther xsl
##date
start () {
 /usr/sbin/httpd
}
stop () {
 kill -s QUIT httpd
}
status () {
 elinks http://192.168.18.213 -dump >/dev/null   本機
  if [ $? -eq 0 ];then
   echo "apache is running"
  else
    echo "apache is down"
  fi
}
restart () {
 kill -s QUIT httpd
 sleep 3
 /usr/sbin/httpd
}
## main
case $1 in
start)
 start;;
stop)
 stop;;
status)
 status;;
restart)
  restart;;
*)
  echo  "Usage: ./case start|stop|restart|status "
esac
######

2,監控磁盤

 

#DISK

#disk () {
#show disk

IP=` ifconfig eth0|awk 'NR==2'|awk '{print $2}'|awk -F: '{print $2}'`
DISK_LIST=`fdisk -l |grep Disk |awk -F , '{print $1}'> disk_list`
DISK_COUNT1=`cat disk_list|wc -l`
let DISK_COUNT2=" $DISK_COUNT1 + 1 "

for (( i=1;i<$DISK_COUNT2;i++ ))
do
  DISK_NAME=`awk NR==$i disk_list|awk '{print $2}'|tr -d ":" `
  echo "`awk NR==$i disk_list`"
  df -Th|grep $DISK_NAME
#  echo -e "\n"

##disk_use_mom
  df -Th|grep $DISK_NAME|awk '{print $6}'|tr -d "%" > disk_use

     for i in `cat disk_use`
        do
            if [ $i -gt 90 ]
             then
                echo "$IP  disk full,please check"
             fi

     done
done

#}

#######

3,監控內存

#!/bin/bash
IP=` ifconfig eth0|awk 'NR==2'|awk '{print $2}'|awk -F: '{print $2}'`
#Mem_mom
#mem () {
MEM_TOTAL=`free |awk 'NR==2'|awk '{print $2}'`
MEM_USE=`free |awk 'NR==2'|awk '{print $3}'`
MEM_FREE=`free |awk 'NR==2'|awk '{print $4}'`
let USE=" $MEM_USE * 100/ $MEM_TOTAL"
echo -e "\t\t\t $IP"
echo
echo mem_total = $MEM_TOTAL
echo mem_use = "$MEM_USE   use "$USE"%"
echo mem_free = $MEM_FREE
#}

####

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

华宁县| 神农架林区| 永城市| 巢湖市| 邹平县| 克东县| 肥乡县| 白河县| 孟津县| 韩城市| 富锦市| 靖边县| 平顺县| 祁东县| 彭阳县| 繁昌县| 五华县| 榆中县| 广水市| 洛川县| 博乐市| 宣化县| 盱眙县| 宁都县| 安福县| 安陆市| 南丰县| 富裕县| 道真| 元谋县| 遵义市| 长宁县| 罗定市| 鹰潭市| 乌什县| 贵港市| 牡丹江市| 志丹县| 上栗县| 伊吾县| 潢川县|