회사에서 nGrinder를 이용하여 성능 테스트를 하려고 한다. 그전에 nGrinder로 성능 테스트를 하기 위해서는 nginx를 튜닝해줘야 한다. 성능 튜닝 [root@hostname nginx]# cd /etc/nginx/ [root@hostname nginx]# vi nginx.conf worker_processes 16; # auto -> core수 worker_rlimit_nofile 1024000; events { worker_connections 8192; multi_accept on; use epoll; } [root@hostname nginx]# service nginx restart [root@hostname nginx]# vi /etc/security/limits.conf root s..