Kibana version: 7.1.1
Elasticsearch version: 7.1.1
APM Server version: 7.1.1
Original install method (e.g. download page, yum, deb, from source, etc.) and version:
DEB:
curl -L -O https://artifacts.elastic.co/downloads/apm-server/apm-server-7.1.1-amd64.deb
sudo dpkg -i apm-server-7.1.1-amd64.deb
Fresh install or upgraded from other version?
Fresh
Is there anything special in your setup?
It's AWS's elasticsearch service.
apm-server is running on an ubuntu 18.04 instance. They're in the same VPC.
Description of the problem including expected versus actual behavior. Please include screenshots (if relevant):
I may have some misconceptions or issues with my setup, so please correct me if I'm wrong on any of this.
The log output, trying to connect to my elasticsearch instance displays:
Connection marked as failed because the onConnect callback failed: cannot retrieve the elasticsearch license: unauthorized access, could not connect to the xpack endpoint, verify your credentials
It appears that AWS runs on port 443 instead of 9200:
curl -XGET 'https://<snip>.us-east-1.es.amazonaws.com:443'
Yields:
"name" : "<snip>",
"cluster_name" : "<snip>",
"cluster_uuid" : "<snip>",
"version" : {
"number" : "7.1.1",
"build_flavor" : "oss",
"build_type" : "tar",
"build_hash" : "7a013de",
"build_date" : "2019-09-05T07:25:23.525600Z",
"build_snapshot" : false,
"lucene_version" : "8.0.0",
"minimum_wire_compatibility_version" : "6.8.0",
"minimum_index_compatibility_version" : "6.0.0-beta1"
},
"tagline" : "You Know, for Search"
}
Does anyone know what I may be doing wrong here?