Hello,
I am trying to create a track from an Elasticsearch node (v7.5.2) that is running on a Windows server 2019 VM and using TLS with basic authentication.
From the rally (v2.0.4) machine I am able to curl to it just fine:
curl -k -H "Authorization:Basic ###############" https://elastic_vm:9200
However, when trying to create a track:
esrally create-track --track=my_track--target-host=elastic_vm:9200 --client-options="use_ssl:true,verify_certs:false,basic_auth_user:'user',basic_auth_password:'password',http_compress:true"
I get the error:
[ERROR] Cannot create-track. AuthenticationException(401, 'security_exception', 'unable to authenticate user [user] for REST request [/]').
What am I still missing?
Thanks!