Linux ETC

CPU 사용률 제한

2015.09.18 12:40

호스트웨이 조회 수:3895

WEB 및 DB등 운영중인 서버에서 백업,배치등의 이유로 CPU부하가 발생 하는 경우가 있습니다.

이럴때 각 프로세에 CPU limit설정 하여 자원 확보하는 프로그램이 있습니다.


#download

- http://sourceforge.net/projects/cpulimit/files/cpulimit/cpulimit/cpulimit-1.1.tar.gz/download?use_mirror=jaist&r=&use_mirror=cdnetworks-kr-1 


#install

[root@apm ~]# ls -la |grep cpulimit-1.1.tar.gz

-rw-r--r--   1 root root    5130 Sep 18 11:41 cpulimit-1.1.tar.gz

[root@apm ~]# tar zxvf cpulimit-1.1.tar.gz

cpulimit-1.1/

cpulimit-1.1/Makefile

cpulimit-1.1/cpulimit.c

[root@apm ~]# cd cpulimit-1.1

[root@apm cpulimit-1.1]# make

gcc -o cpulimit cpulimit.c -lrt -Wall -O2

[root@apm cpulimit-1.1]# ls -la

total 48

drwxr-xr-x  2 1002 root   4096 Sep 18 11:57 .

dr-xr-x---. 5 root root   4096 Sep 18 11:57 ..

-rwxr-xr-x  1 root root  17070 Sep 18 11:57 cpulimit

-rw-r--r--  1 1002 users 14146 Jun 27  2005 cpulimit.c

-rw-r--r--  1 1002 users   107 Jun 24  2005 Makefile

[root@apm cpulimit-1.1]#


#execute
[root@apm cpulimit-1.1]# ps -ef |grep gzip
root     27155 26446 96 12:00 pts/1    00:00:30 gzip -9
root     27162 26446  0 12:01 pts/1    00:00:00 grep gzip
[root@apm cpulimit-1.1]#

./cpulimit -p 27155 -l 30 &


[root@apm cpulimit-1.1]# ps -ef |grep gzip
root     27155 26446 30 12:00 pts/1    00:37:02 gzip -9
root     28643 26446  0 12:39 pts/1    00:00:00 grep gzip

#option
[root@apm cpulimit-1.1]# ./cpulimit --h
Usage: cpulimit TARGET [OPTIONS...]
   TARGET must be exactly one of these:
      -p, --pid=N        pid of the process
      -e, --exe=FILE     name of the executable program file
      -P, --path=PATH    absolute path name of the executable program file
   OPTIONS
      -l, --limit=N      percentage of cpu allowed from 0 to 100 (mandatory)
      -v, --verbose      show control statistics
      -z, --lazy         exit if there is no suitable target process, or if it dies
      -h, --help         display this help and exit


감사합니다.



번호 제목 글쓴이 날짜 조회 수
386 scp 명령어를 이용한 파일 복사 및 전송 호스트웨이 2012.03.16 266656
385 ls 명령어의 파일 사이즈 쉽게 확인하기 호스트웨이 2012.10.23 190552
384 sar 명령 옵션 호스트웨이 2012.06.15 97220
383 리눅스 서버 누가 언제 무슨 작업을 했는지 확인 방법 호스트웨이 2012.03.09 95176
382 Linux Charset 확인 및 변경 file 호스트웨이 2012.03.30 87116
381 ulimit 설정 관련 호스트웨이 2015.07.29 78178
380 Swap 메모리 늘리기 file 호스트웨이 2012.03.30 67728
379 국가명 약어 (국가코드) 호스트웨이 2012.04.13 66432
378 head 와 tail 사용하기 sylee 2008.05.14 64116
377 비대해진 로그 파일 내용을 비우는 방법 - /dev/null 호스트웨이 2012.03.16 62018
376 서비스 이름으로 포트 번호 확인하기 호스트웨이 2012.04.13 58839
375 fdisk 명령어를 이용하여 수동으로 파티션 나누기 file 호스트웨이 2015.11.30 58668
374 강제 umount 방법 (umount : device is busy 발생시) 호스트웨이 2012.11.30 56177
373 top 명령어 및 옵션 설명 file 호스트웨이 2012.03.27 53446
372 history 조회시 '날짜,시간' 표시하기 호스트웨이 2012.03.16 52502
371 xinetd 소개 및 설정 호스트웨이 2012.06.29 52340
370 /bin/false, /sbin/nologin 의 차이점 호스트웨이 2012.08.10 47631
369 시스템 시간 확인 및 동기화 하기 sylee 2008.05.15 47324
368 Kernel Parameters HOSTWAY 2008.06.04 47153
367 ssh-key를 생성하여 서버에 패스워드 없이 접속하는 방법 jook 2008.06.25 45233