'기초 Linux 서버관리/shell프로그래밍'에 해당되는 글 5건

  1. 2012.02.06 메모리 사용량 스크립트
  2. 2012.02.06 CPU 사용량 쉘 스크립트
  3. 2012.01.31 쉘프로그래밍 유용한 사이트 모음
  4. 2012.01.31 [펌글] #!/bin/bash를 쉘 스크립트 첫 줄에 쓰는 이유
  5. 2012.01.27 df 옵션

CPU 사용량 스크립트와 같이 메모리 부하가 일어났을 때,
어떤 프로세스가 메모리 사용이 많았는지 메일 발송이 되는 스크립트입니다.

#!/bin/bash
s_time=$(date +%Y-%m-%d' '%H:%M:%S)

while true; do

#memory usage
TOTAL=`free | awk '/^Mem:/    { printf( "%s\n", $2 ); }'`
USED=`free | awk '/^Mem:/    { printf( "%s\n", $3 ); }'`
FREE=`free | awk '/^Mem:/    { printf( "%s\n", $4 ); }'`
BUFFERS=`free | awk '/^Mem:/    { printf( "%s\n", $6 ); }'`
CACHED=`free | awk '/^Mem:/    { printf( "%s\n", $7 ); }'`

#cat /proc/meminfo | egrep 'MemTotal|MemFree|Buffers|Cached' | grep -v 'SwapCached' | awk '{print $2}' > $TMP_DIR/memory.$$

usage=$(expr $FREE + $BUFFERS + $CACHED)
used=`expr $TOTAL - $FREE - $BUFFERS - $CACHED`
#mem_usage=`echo "$used / $TOTAL * 100"|bc -l`
#mem_usage=$(echo "scale=2; $used/$TOTAL*100"|bc -l)
let "mem_usage=$used*100/$TOTAL"

if [ "$mem_usage" -ge 90 ]; then
 Process=`/bin/ps -eo pmem,pcpu,rss,vsize,args | /bin/sort -k 1 -r | /usr/bin/head -n 20`
 echo -e "$(hostname) as on $s_time \n $Process\n" | mail -s "Alert: Almost out of memory space $mem_usage%" root@test.com
fi

  # Wait before checking again.
  sleep 300

done

Posted by 박물지

CPU 사용량 체크 명령어는 top ,vmstat,sar 등등 많은 것이 있지만
CPU 부하가 일어났을 때, 어떤 프로세스때문인지는 알 수가 없다..따라서 필자는 아래와 같이 CPU부하가 일어났을 때, CPU부하가 높은 순서를 메일로 발송되도록 스크립트를 작성해 보았다.

<cpu-usage.sh>

#!/bin/bash
s_time=$(date +%Y-%m-%d' '%H:%M:%S)
PREV_TOTAL=0
PREV_USER=0

while true; do
#CPU 전체 사용량을 cat으로 추출한다.
  CPU=(`cat /proc/stat | grep '^cpu '`) # Get the total CPU statistics.
  unset CPU[0]                          # Discard the "cpu" prefix.
  USER=${CPU[1]}                        # Get the idle CPU time.

  # Calculate the total CPU time.
  TOTAL=0
  for VALUE in "${CPU[@]}"; do
    let "TOTAL=$TOTAL+$VALUE"
  done


  # Calculate the CPU usage since we last checked.
  let "DIFF_USER=$USER-$PREV_USER"
  let "DIFF_TOTAL=$TOTAL-$PREV_TOTAL"
  let "DIFF_USAGE=$DIFF_USER*100/$DIFF_TOTAL"
  #echo -en "CPU: $DIFF_USAGE%  \n"

  # Remember the total and idle CPU times for the next check.
  PREV_TOTAL="$TOTAL"
  PREV_USER="$USER"


  if [ "$DIFF_USAGE" -ge 20 ]; then
  #Process=`/bin/ps -eo pmem,pcpu,rss,vsize,args | /bin/sort -k 2 -r | /usr/bin/head -n 20`
#cpu부하가 일어났을 때, 어떤 프로세스때문에 부하가 일어났는지 프로세스 상태를 메일로 발송해 준다.
  Process=`/bin/ps -eo ppid,user,bsdstart,bsdtime,%mem,%cpu,args --sort=-%cpu | /usr/bin/head -n 20`
  echo -e "$(hostname) as on $s_time \n $Process\n" | mail -s "Alert: Almost out of cpu usage $DIFF_USAGE%" root@test.com
  fi

  # Wait before checking again.(5분마다 해당 스크립트가 작동하도록 300초 설정)
  sleep 300
done

위와 같이 스크립트를 작성하였다면, 백그라운드에서 해당 스크립트가 작동되록 설정해 준다.

#백그라운드 실행
sh <root directory>/cpu-usage.sh &

#프로세스가 잘 운영되고 있는지 확인
ps -ef | grep cpu

#stress 설치 및 부하 테스트

stress --cpu 8 --io 4 --vm 2 --vm-bytes 128M --timeout 400s

Site : http://weather.ou.edu/~apw/projects/stress/

1. 설치
# wget http://weather.ou.edu/~apw/projects/stress/stress-1.0.4.tar.gz
# tar xvfz stress-1.0.4.tar.gz
# cd stress-1.0.4
# ./configure
# make && make install


2. 실행
# stress
`stress' imposes certain types of compute stress on your system

Usage: stress [OPTION [ARG]] ...
-?, --help show this help statement
--version show version statement
-v, --verbose be verbose
-q, --quiet be quiet
-n, --dry-run show what would have been done
-t, --timeout N timeout after N seconds
--backoff N wait factor of N microseconds before work starts
-c, --cpu N spawn N workers spinning on sqrt()
-i, --io N spawn N workers spinning on sync()
-m, --vm N spawn N workers spinning on malloc()/free()
--vm-bytes B malloc B bytes per vm worker (default is 256MB)
--vm-stride B touch a byte every B bytes (default is 4096)
--vm-hang N sleep N secs before free (default none, 0 is inf)
--vm-keep redirty memory instead of freeing and reallocating
-d, --hdd N spawn N workers spinning on write()/unlink()
--hdd-bytes B write B bytes per hdd worker (default is 1GB)

Example: stress --cpu 8 --io 4 --vm 2 --vm-bytes 128M --timeout 10s

Note: Numbers may be suffixed with s,m,h,d,y (time) or B,K,M,G (size).

 

Posted by 박물지
Posted by 박물지

출처 : http://happybruce.tistory.com

쉘 스크립트를 만들때,  가장 첫 라인에 #!/bin/bash 를 왜 써야 하는지에 대하여 알아 보도록 하겠습니다.

쉘 스크립트의 가장 첫 라인에  !/bain/bash 를 쓰게 됨으로 해서, 내가 사용 하려는 명령어 해석기가 bash 쉘 임을 미리 알려주는 것입니다. 일반적으로 스크립트에서 #는 주석기호이지만, 첫 라인의 #!/bin/bash 에서의 #은 주석기호가 아닙니다.

스크립트의 가장 첫 라인에 있는 #! 은 스크립트의 제일 앞에서 이 파일이 어떤 명령어 해석기의 명령어 집합인지를 시스템에게 알려주는 역할을 합니다.

#! 은 두 바이트의 "매직넘버"("magic number")로서, 실행 가능한 쉘 스크립트라는 것을 나타내는 특별한 표시자 입니다.

#! 바로 뒤에 나오는 것은 경로명으로, 스크립트에 들어있는 명령어들을 해석할 프로그램의 위치를 나타내는데 그 프로그램이 쉘인지, 프로그램 언어인지, 유틸리티인지를 나타냅니다. 이 명령어 해석기가 주석은 무시하면서 스크립트의 첫 번째 줄부터 명령어들을 실행시킵니다.

거의 대부분의 상업용 유닉스 및 리눅스 에서 기본 본쉘인 #!/bin/sh을 쓰면 비록 Bash 만 가지고 있는 몇몇 기능들을 못 쓰게 되겠지만 리눅스가 아닌 다른 머신에 쉽게 포팅 할 수 있게 해 줍니다. (이렇게 작성된 스크립트는 POSIX sh 표준을 따르게 됩니다. )
"#!" 뒤에 나오는 경로는 정확히 Full PATH를 기록 해야 합니다.

만약 PATH를 잘못 적게 되면, 스크립트를 돌렸을 때 거의 대부분 "Command not found"라는 에러 메세지만 보게 될 것입니다.

이상으로 쉘 스크립트 처음에 왜 "#!/bin/bash"를 반드시 써야만 하는지에 대하여 알아 보았습니다.

 

'기초 Linux 서버관리 > shell프로그래밍' 카테고리의 다른 글

메모리 사용량 스크립트  (0) 2012.02.06
CPU 사용량 쉘 스크립트  (0) 2012.02.06
쉘프로그래밍 유용한 사이트 모음  (0) 2012.01.31
df 옵션  (0) 2012.01.27
Posted by 박물지

VolGroup으로  구성되어 있을 때, df -h명령어로 보면 아래와 같이  출력값이 오버가 된다.



평상시에는 상관없지만 , disk 사용량을 shellscript 로 구성할 때는 출력값을 제대로 못 가져올 경우가 있다.
따라서 df -hP 옵션을 주면 출력값은 오버되지 않고 한 줄로 출력된다.


이렇게 출력 되면 disk usage shellscript 짤 때, 쉽게 Use% 값을 구할 수 있다.

<참고 : disk usage script>

#!/bin/bash
s_time=$(date +%Y-%m-%d' '%H:%M:%S)
df -HP | grep -vE '^Filesystem'|awk '{print $5 " " $1 " " $6}' | while read output;
do
  echo $output
  usage=$(echo $output | cut -d'%' -f1  )
  partition=$(echo $output | awk '{ print $2 " " $3 }' )
  if [ $usage -ge 95 ]; then
    echo "Running out of space \"$partition ($usage%)\" on $(hostname) as on $s_time" |
     mail -s "Alert: Almost out of disk space $usage%" root@test.com
  fi
done

Posted by 박물지