Versions Compared

Key

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

...

To verify if outbound requests are permitted from the Snaplex node, run the following command:

paste-code-macro
curl https://elastic.snaplogic.com/status

...

To check access through a proxy, run the following command:

paste-code-macro
curl -x myproxy.mydomain.com:3128 https://elastic.snaplogic.com/status

If this request fails with a 407 (Proxy Authentication Required), then you need to specify the authentication information in the proxy.

To check the proxy authentication, run the following command:

paste-code-macro
curl -x myproxy.mydomain.com:3128 --proxy-user "proxyuser:proxypasswd" https://elastic.snaplogic.com/status

The -v option can be added to curl to get detailed messages.

...