Symptom:
When a clustered Orchestrator is configured to use secure (HTTPS) communication and agents are configured to use simplified communication with an NGINX load balancer, CPU usage spikes can occur in server nodes when the orchestrator is restarted while multiple agents are active.
Solution:
Note: This is not a recommended approach. Use the following approach only for the above problem.
To fix the problem, configure the clustered Orchestrator to use non-secure (HTTP) communication between load balancer and orchestrator as follows:
upstream node1{
server <hostname of machine where you have installed node1>: Specify the same port number as pam.transport.unsecured.connector.port
}
Note: Specify the same port number as pam.transport.unsecured.connector.port for upstream node2.
location = /ws/node1 {
proxy_pass http://node1; }
location /ws/node1/ {
proxy_pass http://node1;}
location = /ws/node2 {
proxy_pass http://node2; }
where node2 is the upstream name
location /ws/node2/ {
proxy_pass http://node2; }
|
Copyright © 2014 CA.
All rights reserved.
|
|