ELK安装 – 配置es
1.当出现如下SSL建立无法连接的情况时
[root@elk-1 plugins]# wget https://github.com/Asquera/elasticsearch-http-basic/releases/download/v1.1.0/elasticsearch-http-basic-1.1.0.jar
–2021-03-06 04:34:46-- https://github.com/Asquera/elasticsearch-http-basic/releases/download/v1.1.0/elasticsearch-http-basic-1.1.0.jar
Resolving github.com (github.com)… 52.74.223.119
Connecting to github.com (github.com)|52.74.223.119|:443… connected.
Unable to establish SSL connection.
解决方法:
原命令上加上" --no-check-certificate"
这是因为wget在使用HTTPS协议时,默认会去验证网站的证书,而这个证书验证经常会失败。加上"–no-check-certificate"选项,就能排除掉这个错误。
[root@elk-1 plugins]# wget https://github.com/Asquera/ela