서버 간이 고부하 폭력 테스트

3428 단어
1. [고CPU 사용률 시뮬레이션]
CPU 여유 공간을 위한 C 프로그램 작성:
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
 
int main() 
{ 
    pid_t pid; 
    while(1) 
    { 
        if((pid=fork()) <0) 
        continue; 
        else if(pid==0) 
        { 
            while(1) 
            { 
            } 
        } 
        else 
        continue; 
    } 
    return 0;
}

참고: 위의 절차는 서버 CPU의 사용량을 100%까지 증가시키고 사용률을 조절할 수 없습니다.
top 도구를 사용하여 현재 시스템의 CPU 사용량을 확인할 수 있습니다.
Cpu(s): 
us 사용자 공간 CPU 사용률
sy 코어 공간 CPU 사용률
ni 사용자 프로세스 공간에서 우선 순위가 바뀐 프로세스가 CPU 비율을 차지합니다
id 유휴 CPU 백분율
wa 입출력 대기 CPU 시간 백분율
프로그램 CPU 사용률을 제한하는 소스 오픈 도구를 소개합니다: cpulimiter.프로그램의 CPU 사용률을 제한할 수 있습니다.
svn checkout https://cpulimit.svn.sourceforge.net/svnroot/cpulimit/trunk cpulimit
cd cpulimit
./configure
make
그런 다음 생성된 실행 파일을/usr/bin/디렉토리에 배치할 수 있습니다.
재실행: cpulimit --exe FileName --limit 80
(FileName 프로그램의 CPU 사용량을 80%로 제한)
이렇게 하면 CPU 부하 점용 비율을 마음대로 시뮬레이션할 수 있다.
2. [높은 메모리 사용률 시뮬레이션]
시스템의 여유 메모리 공간을 차지하는 C++ 프로그램 작성:
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/time.h>
#include <time.h>

int main()
{
	int timeuse=0;
	struct timeval tpstart,tpend;
	while (1)
	{
		gettimeofday(&tpstart,NULL);
		while (1)
		{
			gettimeofday(&tpend,NULL);
			timeuse = 1000000 * (tpend.tv_sec - tpstart.tv_sec) + (tpend.tv_usec - tpstart.tv_usec);  
			timeuse /= 1000;
			//char * Logmsg = new char[65535];
			char * Logmsg = new char[512];
		}
		sleep(20 / 1000);
	}
	return 0;        
}

이 프로그램은 시스템 메모리를 가득 채우고 메모리가 가득 차면 시스템이 자체로 이 프로그램 프로세스를 킬합니다.
top 명령을 사용하여 메모리 정보를 보려면 다음과 같이 하십시오.
Mem: 
total 물리적 메모리 총량
used에서 사용하는 물리적 메모리 총량
free 빈 메모리 총량
buffers는 내장 캐시 메모리로 사용됩니다
상기 방식으로 메모리 고점용률 테스트를 하는데 어느 정도 결함이 있다. 바로 메모리 점용률에 대해 제한 조절을 할 수 없다는 것이다. 여기서 프로세스의 메모리 점용률을 제한하고 조절할 수 있는 방법이 있다면 하나, 둘을 지적해 주시면 감사하겠습니다.
3. [디스크 읽기와 쓰기 능력 테스트]
아날로그 디스크 파일 고주파 읽기 및 쓰기 작업:
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <error.h>
/*
*  40M  , 5ms 5ms,    
*/
int main(void)
{
	FILE *fp = NULL;
	char* testRead = NULL;
	char* testWrite = NULL;
	int i = 0;
	unsigned long ulFileLen = 0;
	for(;;)
	{
		testWrite = (char *)malloc(1024*1024*50);		
		memset(testWrite, 0, sizeof(testWrite));
		
		for(i=0;i<1024;i++)					//4K=1024*4
		{
			strcat(testWrite, "Test");
		}
		fp = fopen("/tmp/testReadWrite1.ini", "w");
		if(fp == NULL)
		{
			printf("Cannot Open This File !");
			exit(1);
		}
		for(i=0;i<10*1024;i++)				//40M=1024*4K*10
		{
			fwrite(testWrite,sizeof(testWrite),1024,fp);
		}
		fclose(fp);
		free(testWrite);
		usleep(5);
		
		testRead = (char *)malloc(1024*1024*50);
		memset(testRead, 0, sizeof(testRead));
		fp = fopen("/tmp/testReadWrite1.ini", "r");
		if(fp == NULL)
		{
			printf("Cannot Open This File !");
			exit(1);
		}
		fseek(fp, 0, SEEK_END);
		ulFileLen = ftell(fp);
		fseek(fp, 0, SEEK_SET);	
		fread(testRead, sizeof(testWrite), ulFileLen/sizeof(testWrite), fp);
		printf(">>>>>>>>>
[TEST]READ:%s [%d]
", testRead, ulFileLen); fclose(fp); free(testRead); usleep(5); } return 0; }

좋은 웹페이지 즐겨찾기