100% CPU Usage

Hi
(In first sorry for my english, I’m French)
In my Company we work with Trend Micro Deep Security v9.
This solution is installed on a 2008R2 SP1 (Virtual Machine) and every
week
we have a crash; 2 NGINX.EXE process uses 100% CPU usage.
I have created a scheduled task who reboot the server once per week but
the
problem is not resolved.

NGINX version :

Nginx/1.2.3

Nginx.conf :

daemon off;
worker_processes 1;
error_log “C:/Program Files/Trend Micro/Deep Security
Relay/relay/logs/error.log”;
pid “C:/Program Files/Trend Micro/Deep Security
Relay/relay/nginx.pid”;
events { worker_connections 1024; }
http {
server_tokens off;
default_type application/octet-stream;
keepalive_timeout 60;
access_log off;
log_not_found off;
ssl_certificate “C:/Program Files/Trend Micro/Deep Security
Relay/relay/ds_relay.pem”;
ssl_certificate_key “C:/Program Files/Trend Micro/Deep Security
Relay/relay/ds_relay.key”;
server {
listen [::]:4122 ssl;
listen 4122 ssl;
root “C:/Program Files/Trend Micro/Deep Security
Relay/relay/iau/”;
location / {
allow all;
}
location /data/ {
client_body_in_file_only on;
client_body_temp_path “C:/Program Files/Trend Micro/Deep
Security Relay/relay/iau/upload/”;
client_max_body_size 1000m;
client_body_timeout 300;
fastcgi_pass localhost:4123;
fastcgi_param URI $uri;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_param CONTENT_FILE $request_body_file;
fastcgi_param CONTENT_ROOT $document_root;
}
location /upload/ {
internal;
}
}
}

Server :
2008 R2 SP1 (Virtual Machine)
2 vCPU
8Gb memory

Have you any ideas about this problem ?

Thanx in advance,
Cédric

Posted at Nginx Forum:

Hello!

On Fri, Feb 07, 2014 at 09:27:02AM -0500, Cédric wrote:

Nginx/1.2.3
First of all, I would recommend you to upgrade to nginx 1.5.10.
Version 1.2.3 is just outdated. It might also be a good idea to
ask Trend Micro for support if you’ve got nginx as a part of their
product.

Please also make sure you understand that nginx for Windows is in
beta, has number of known problems and limitations, and it’s not
really intended for production use. See
nginx for Windows for some details.


Maxim D.
http://nginx.org/

Thanks for you answer, I will try to see with Trend.
Have a nice day

Posted at Nginx Forum: