我通过创建自签名证书来运行带有SSL的Elastic Search
实例。从R通过elastic
包连接时遇到问题。
这就是我的进步:
启用SSL后,当我尝试连接到Elastic Search实例时,出现以下错误:
$ curl -u $USER:$PASS 'https://localhost:9200/_cat/health?v'
curl: (60) Peer certificate cannot be authenticated with known CA certificates
More details here: http://curl.haxx.se/docs/sslcerts.html
curl performs SSL certificate verification by default, using a "bundle"
of Certificate Authority (CA) public keys (CA certs). If the default
bundle file isn't adequate, you can specify an alternate file
using the --cacert option.
If this HTTPS server uses a certificate signed by a CA represented in
the bundle, the certificate verification probably failed due to a
problem with the certificate (it might be expired, or the name might
not match the domain name in the URL).
If you'd like to turn off curl's verification of the certificate, use
the -k (or --insecure) option.
很明显,这个问题是因为证书不受信任。一种方法是将自签名证书添加到信任库,但我不知道它在哪里。其他方法是通过添加-k来跳过证书验证。但我想表演。
因此,我找到了一个解决方法,只需指定root-ca.pem
如下:
$ curl -u $USER:$PASS 'https://localhost:9200/_cat/health?v' --cacert /home/user/root-ca.pem
epoch timestamp cluster status node.total node.data shards pri relo init unassign pending_tasks max_task_wait_time active_shards_percent
1479462058 03:40:58 es-cluster yellow 1 1 365 365 0 0 364 0 - 50.1%
然后另一个SO问题帮我创建了一个文件~/.curlrc
,如下所示:
$ cat ~/.curlrc
capath=/home/user/
之后,我甚至不必指定证书。
$ curl -u $USER:$PASS 'https://localhost:9200/_cat/health?v'
epoch timestamp cluster status node.total node.data shards pri relo init unassign pending_tasks max_task_wait_time active_shards_percent
1479462172 03:42:52 es-cluster yellow 1 1 365 365 0 0 364 0 - 50.1%
直到现在,但是现在当我尝试从R
连接到弹性搜索时。我收到以下错误。
> library(elastic)
> connect(es_base = "https://localhost", es_port = 9200, es_user = USER, es_pwd = PASS)
Error:
Failed to connect to https://127.0.0.1:9200
Remember to start Elasticsearch before connecting
日志报告unknown_ca
错误。 elastic
R包可能正在使用httr / curl进行连接,但我无法弄清楚如何指定证书。
我提到了解决方案here,但它适用于RCurl
。
请建议。
版本:
答案 0 :(得分:0)
根据@sckott的建议,我必须设置cainfo
参数。
以下是我的案例:
library(elastic)
library(httr)
set_config(config(cainfo = "/home/user/root-ca.pem"))
connect(es_base = "https://localhost", es_port = 9200, es_user = USER, es_pwd = PASS)
谢谢Sckott。