You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 1, 2023. It is now read-only.
When enabling SSL (use_dashboard_ssl => true) influx tries to connect with (post_start_configs.pp) looking
into the code off post start config I dont see any '-ssl' flag that is required to connect to influxdb
See example below
influx -ssl -unsafeSsl -username admin -password xxxx -execute 'show databases'
Currently all influxdb interactions not using the '-ssl' argument.
Expected Behavior
When using use_dashboard_ssl => true the code should change and use the '-ssl' argument
Then try to connect with the below command it will fail
#influx -username admin -password xxxx -execute 'show databases'
ERR: Client sent an HTTP request to an HTTPS server.
Client sent an HTTP request to an HTTPS server.
Then try to connect with the below command and it will work.
#influx -ssl -unsafeSsl -username admin -password xxxx -execute 'show databases'
internal
telegraf