When installing Marvel I hit this issue:
/opt/kibana/bin/kibana plugin --install elasticsearch/marvel/latest
Installing marvel
Attempting to transfer from https://download.elastic.co/elasticsearch/marvel/marvel-latest.tar.gz
Error: Client request error: unable to get local issuer certificate
Plugin installation was unsuccessful due to error "Client request error: unable to get local issuer certificate"
My company uses an intermediate CA cert to verify https connections.
Where can I add this CA cert so that I can install Marvel??
Note: for the Elasticsearch plugin install tool I needed to import the cert with the ${JAVA_HOME}/bin/keytool
For Kibana plugin install tool I've tried all the below config settings with no success (where /ca.pem is my CA cert in PEM format)
cat /opt/kibana/config/kibana.yml | grep ssl
server.ssl.cert: /ca.pem
# server.ssl.key: /path/to/your/server.key
elasticsearch.ssl.cert: /ca.pem
# elasticsearch.ssl.key: /path/to/your/client.key
elasticsearch.ssl.ca: /ca.pem
elasticsearch.ssl.verify: false