Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If the Storage and Cluster node are not the same physical machine, then you need now to adjust the fileĀ /etc/nginx/conf.d/upstream-elastic.inc to point to the IP or Hostnames of the storage node(s).

Examples:

Single Server both rolesDedicated Storage NodeMultiple Storage Nodes


Code Block
upstream elastic {
    server 127.0.0.1:9200;
    keepalive 32;
}



Code Block
upstream elastic {
 server 192.168.0.20:9200;
 keepalive 32;
}



Code Block
upstream elastic {
 server 192.168.0.20:9200;
 server 192.168.0.21:9200;
 server 192.168.0.22:9200;
 keepalive 32;
}


If changes have been made to this file, reload the nginx configuration

Code Block
languagebash
service nginx reload

Finally start the Squirro Services

...