Skip to content

Instantly share code, notes, and snippets.

@devlatte
Last active February 14, 2018 10:17
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devlatte/fda1c57ed7a33daea73c8b00799d74a1 to your computer and use it in GitHub Desktop.
Save devlatte/fda1c57ed7a33daea73c8b00799d74a1 to your computer and use it in GitHub Desktop.
logstash 5.1.1 install plugin with proxy (fixed at 5.2+)
//from pure package
export http_proxy="proxy.host:3128"
export https_proxy=$http_proxy
export JRUBY_OPTS="-J-Dhttp.proxyHost=proxy.host -J-Dhttp.proxyPort=3128"
DEBUG=1 JARS_SKIP='true' bin/logstash-plugin install logstash-filter-json_encode
@devlatte
Copy link
Author

@devlatte
Copy link
Author

devlatte commented Jun 7, 2017

v5.4.0 not fixed yet... JARS_SKIP='true' needed

@lkpatel
Copy link

lkpatel commented Jul 26, 2017

What to do in case of authenticated proxy ? -J-Dhttp.proxyUser and -J-Dhttp.proxyPassword settings does not seems to be working ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment