I have an elasticsearch running in the elastic cloud and I would like to run the kibana in another place because there they do not allow to customize the look of kibana, but when I try to run kibana locally, for example, I get the message:
kibana | {"type":"log","@timestamp":"2019-05-31T14:48:58Z","tags":["warning","task_manager"],"pid":1,"message":"PollError No Living connections"}
kibana | {"type":"log","@timestamp":"2019-05-31T14:49:00Z","tags":["warning","elasticsearch","admin"],"pid":1,"message":"Unable to revive connection: https://22afcafe58ee4c818b66829c7488b23b.us-east-1.aws.found.io:9243/"}
My elasticsearch.yml
xpack:
security:
authc:
realms:
cloud-saml:
type: saml
order: 2
attributes.principal: "nameid"
attributes.groups: "http://schemas.microsoft.com/ws/2008/06/identity/claims/groups"
idp.metadata.path: "https://login.microsoftonline.com/4a39dff3-ff09-440b-b47b-8c603416bfce/federationmetadata/2007-06/federationmetadata.xml?appid=bdf10ffb-849e-4fd4-8038-335ed137c0aa"
idp.entity_id: "https://sts.windows.net/4a39dff3-ff09-440b-b47b-8c603416bfce/"
sp.entity_id: "https://8b64c0c41ede48bc9e907a5279089109.us-east-1.aws.found.io:9243"
sp.acs: "https://8b64c0c41ede48bc9e907a5279089109.us-east-1.aws.found.io:9243/api/security/v1/saml"
sp.logout: "https://8b64c0c41ede48bc9e907a5279089109.us-east-1.aws.found.io:9243/logout"
My kibana.yml
elasticsearch.hosts: [ "https://22afcafe58ee4c818b66829c7488b23b.us-east-1.aws.found.io:9243" ]
elasticsearch.username: "elastic"
elasticsearch.password: "XXXXXX"
elasticsearch.ssl.verificationMode: "certificate"
xpack.monitoring.enabled: true
xpack.security.enabled: true
server.ssl.enabled: true
elasticsearch.ssl.certificateAuthorities: "/usr/share/elasticsearch/config/certificates/ca/ca.crt"
server.ssl.key: "/usr/share/elasticsearch/config/certificates/kibana/kibana.key"
server.ssl.certificate: "/usr/share/elasticsearch/config/certificates/kibana/kibana.crt"