기초 Linux 서버관리2013. 3. 21. 13:27
php -r 'phpinfo ();' | grep Configuration
Configuration File (php.ini) Path 을 확인하면 된다
Posted by 박물지
기초 Linux 서버관리2013. 3. 21. 13:25
Zend Guard Loader 설치 후 php -v로 봤을 때
 
 Cannot load Zend Guard Loader - it was built with configuration API220090626,NTS, whereas running engine is API220090626,NTS,debug
에러가 발생된다면 php configure옵션 때문에 발생된 것이다.
 --enable-debug=yes
원인 파악 방법
 php -r 'phpinfo ();' | grep API220090626
 
Cannot load Zend Guard Loader - it was built with configuration API220090626,NTS, whereas running engine is API220090626,NTS,debug
 
zend 가 API220090626,NTS,debug 로 설치가 되었다
 
그래서 ZendGuardLoader.so 파일을 strings해서 API220090626 검색해 보니
 
#strings ZendGuardLoader.so | grep API220090626
API220090626,NTS
 
debug라는 문구가 없다
따라서 php configure에서 --enable-debug=yes 옵션을 빼고 재컴파일 했더니 Zend Guard Loader
정상 인식 되었다.
PHP 5.3.15 (cli) (built: Mar 15 2013 18:07:28)
Copyright (c) 1997-2012 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2012 Zend Technologies
    with Zend Guard Loader v3.3, Copyright (c) 1998-2010, by Zend Technologies 


'기초 Linux 서버관리' 카테고리의 다른 글

리눅스 남아 있는 메모리 오해와 진실?  (0) 2013.12.13
php.ini 파일 실행 위치 확인  (0) 2013.03.21
웹 사이트 로딩 속도 체크 사이트  (0) 2012.08.14
APM 설치  (0) 2012.03.13
mysql 유용한 툴  (0) 2011.12.01
Posted by 박물지
기초 Linux 서버관리2012. 8. 14. 17:46

깔끔하고 상세히 잘 나오는 것 같아서 괜찮은 것 같습니다.

 

http://tools.pingdom.com/fpt/

 

 

Posted by 박물지

SEVERE: Servlet.service() for servlet dispatcher threw exception
java.sql.SQLException: User does not have access to metadata required to determine stored procedure parameter types. If rights can not be granted, configure connection with "noAccessToProcedureBodies=true" to have driver generate parameters that represent INOUT strings irregardless of actual parameter types.

 

위와 같이 톰캣 에러가 발생되면 프로시저 권한이 없는 것이므로 아래와 같이 GRANT 로 처리하면 간단히 해결이 됩니다.

 

GRANT SELECT, INSERT, UPDATE, DELETE ON `mysql`.`proc` TO '실행 계정'@'%' 또는 'localhost' 로 설정

 

Posted by 박물지
기초 Linux 서버관리2012. 3. 13. 16:45

설치 환경
OS : CentOS release 6.2 (Final)
Mysql : 5.1.60
Apache : 2.4.1
Php : 5.3.10

[Mysql]
# groupadd mysql
# useradd -g mysql mysql
./configure --prefix=/data/mysql --localstatedir=/data/mysql/data --with-charset=euckr --with-extra-charsets=all
make && make install
/data/mysql/bin/mysql_install_db --datadir=/data/mysql/var --force
chown -R mysql:mysql /data/mysql

*오류*
mysql checking for termcap functions library... configure: error: No curses/termcap library found
*해결 방법*
yum install libtermcap-devel

*오류*
my_global.h:1110: error: redeclaration of C++ built-in
*해결 방법*
1.yum install gcc-c++설치
2.make clean
3. 재 컴파일

[Apache]
./configure --prefix=/data/apache --enable-so --enable-rewrite --enable-proxy --enable-ssl --enable-unique-id

make && make install

Apache 컴파일 시 오류 처리 사항

*오류*
checking for OpenSSL version >= 0.9.7... FAILED
configure: WARNING: OpenSSL version is too old
no
checking whether to enable mod_ssl... configure: error: mod_ssl has been requested but can not be built due to prerequisite failures
*해결 방법*
yum install openssl-devel
yum update openssl

*오류*
rotatelogs.o: In function `post_rotate':
rotatelogs.c:(.text+0x5ed): undefined reference to `apr_file_link'
collect2: ld returned 1 exit status
make[2]: *** [rotatelogs] Error 1
make[2]: Leaving directory `/root/src/httpd-2.4.1/support'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/root/src/httpd-2.4.1/support'
make: *** [all-recursive] Error 1
*해결 방법*
Apache 2.4.에서는 apr 1.4이상이 필요하다 따라서 rpm apr 패키지 버전이 1.4이하라면 소스컴파일을 해야 한다.
1. yum remove "apr*"
2.APR 소스 설치
   wget http://ftp.jaist.ac.jp/pub/apache//apr/apr-1.4.6.tar.gz
   tar xzf apr-1.4.6.tar.gz
   cd apr-1.4.6
   ./configure ; make ; make install
   wget http://ftp.jaist.ac.jp/pub/apache//apr/apr-util-1.4.1.tar.gz
   tar zxvf apr-util-1.4.1.tar.gz
   cd apr-util-1.4.1
   ./configure --with-apr=/usr/local/apr
   yum install -y pcre-devel lua-devel libxml2-devel

[php]
./configure --prefix=/data/php --with-mysql=/data/mysql --with-apxs2=/data/apache/bin/apxs --enable-sysvshm=yes --enable-sysvsem --enable-debug=no --with-ttf --with-png-dir=/usr --with-zlib-dir --with-jpeg-
dir=/usr --with-gdbm=/usr --enable-ftp --enable-mbstring --enable-sockets --enable-wddx --with-freetype-dir=/usr --enable-bcmath --with-curl --with-mcrypt --enable-mbregex --enable-exif --with-gd --enable-gd-
native-ttf --enable-calendar --with-openssl --with-mysqli=/data/mysql/bin/mysql_config

make && make install

Posted by 박물지

핸드폰 또는 태블릿으로 내 서버 상태가 이상없는지 웹브라우저에서 Ping으로 확인할 수 있도록 프로그램을 짜 보았다.

<?php
$now=date("Y-m-d-H:i:s");
$host=array(
        '공인IP' => 'hostname',
        '공인IP' => 'hostname'
);

foreach($host as $ip => $hostname) {

$str = exec("ping -c 2 $ip");
if ($result == 0){
  echo "$ip ping <font size=5> succeeded</font> - $hostname <br />";
}else{
  echo "$ip ping <font size=5; color=red>failed</font> - $hostname <br />";
}
}

echo("<br /> <font size=14> update time : $now </font> <br />");
?>

테스트 결과 ping count가 2이상이고 등록한 서버IP가 많다면 웹 브라우저 출력시 시간이 다소 걸리니
이점 참고해야 됩니다.

Posted by 박물지

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 박물지