On attempting to start Octane after installation, I receive an error message:
2022/05/05 16:04:05 | ************************************************************
2022/05/05 16:04:05 | ** Error #2: Elasticsearch connection error
2022/05/05 16:04:05 | ************************************************************
2022/05/05 16:04:05 | No access to Elasticsearch. Elastic rest client get elastic version failure (Hosts: [10.150.145.78], Port: 9300, HttpPort: 9200, Cluster name: m42-alm-es01, Sniff Enabled: false)Check port and elastic credentials
2022/05/05 16:04:05 |
2022/05/05 16:04:05 | +-------------------------------------------------------------------------
2022/05/05 16:04:05 | | How to fix:
2022/05/05 16:04:05 | |
2022/05/05 16:04:05 | | - Validate Elasticsearch machine is configured according KM02494295.
2022/05/05 16:04:05 | | - Use 'curl -X GET <machine>:<port>' to get elasticsearch details.
2022/05/05 16:04:05 | | - Validate Elasticsearch machine is accessible from current machine.
2022/05/05 16:04:05 | | - Validate Elasticsearch ports are accessible.
2022/05/05 16:04:05 | | - Validate Elasticsearch cluster name is correct.
2022/05/05 16:04:05 | | - Validate Elasticsearch configuration is correct.
2022/05/05 16:04:05 | +-------------------------------------------------------------------------
2022/05/05 16:04:05 |
2022/05/05 16:04:05 | Exception during validation:
2022/05/05 16:04:05 | Elastic rest client get elastic version failure
2022/05/05 16:04:05 | could not create the default ssl context
2022/05/05 16:04:05 | Error constructing implementation (algorithm: Default, provider: SunJSSE, class: sun.security.ssl.SSLContextImpl$DefaultSSLContext)
2022/05/05 16:04:05 | problem accessing trust store
2022/05/05 16:04:05 | Keystore was tampered with, or password was incorrect
2022/05/05 16:04:05 | Password verification failed
2022/05/05 16:04:05 | com.hp.mqm.configuration.Exceptions.ConfigurationException: Elastic rest client get elastic version failure
Any ideas on how to address this (not using TLS)? I do have connection to the Elasticsearch server:
# curl -XGET '10.150.145.78:9200/.../health
{
"cluster_name" : "m42-alm-es01",
"status" : "green",
"timed_out" : false,
"number_of_nodes" : 1,
"number_of_data_nodes" : 1,
"active_primary_shards" : 0,
"active_shards" : 0,
"relocating_shards" : 0,
"initializing_shards" : 0,
"unassigned_shards" : 0,
"delayed_unassigned_shards" : 0,
"number_of_pending_tasks" : 0,
"number_of_in_flight_fetch" : 0,
"task_max_waiting_in_queue_millis" : 0,
"active_shards_percent_as_number" : 100.0
}