I am using InfluxDB docker 2.7.0 version and trying to run the InfluxDB using the HTTPS. I have created the cert and key file and placed in /etc/ssl/self-signed-certificate.cert
and /etc/ssl/self-signed-certificate.key
and mounted this path in my docker volume as well. But I am not able to run the InfluxDB using the HTTPS.
I have followed this documentation Enable TLS/SSL encryption | InfluxDB OSS v2 Documentation
When I am running this command ```
curl --verbose https://localhost:8086/api/v2/ping
I am getting below output
* Trying 127.0.0.1:8086...
* Connected to localhost (127.0.0.1) port 8086 (#0)
* ALPN: offers h2,http/1.1
* TLSv1.3 (OUT), TLS handshake, Client hello (1):
* CAfile: /etc/ssl/certs/ca-certificates.crt
* CApath: /etc/ssl/certs
* OpenSSL/3.0.11: error:0A00010B:SSL routines::wrong version number
* Closing connection 0
curl: (35) OpenSSL/3.0.11: error:0A00010B:SSL routines::wrong version number
When I am running this command influxd
–tls-cert=“/etc/ssl/self-signed-certificate.cert”
–tls-key=“self-signed-certificate.key”
``` `
influxd
–tls-cert=“/etc/ssl/self-signed-certificate.cert”
–tls-key=“self-signed-certificate.key”
2024-07-16T06:31:12.685749Z info Welcome to InfluxDB {“log_id”: “0qQZeEBG000”, “version”: “v2.7.6”, “commit”: “3c58c06206”, “build_date”: “2024-04-12T21:51:21Z”, “log_level”: “info”}
2024-07-16T06:31:12.693964Z info Resources opened {“log_id”: “0qQZeEBG000”, “service”: “bolt”, “path”: “/root/.influxdbv2/influxd.bolt”}
2024-07-16T06:31:12.694035Z info Resources opened {“log_id”: “0qQZeEBG000”, “service”: “sqlite”, “path”: “/root/.influxdbv2/influxd.sqlite”}
2024-07-16T06:31:12.695670Z info Bringing up metadata migrations {“log_id”: “0qQZeEBG000”, “service”: “KV migrations”, “migration_count”: 20}
2024-07-16T06:31:12.887218Z info Bringing up metadata migrations {“log_id”: “0qQZeEBG000”, “service”: “SQL migrations”, “migration_count”: 8}
2024-07-16T06:31:12.946355Z info Using data dir {“log_id”: “0qQZeEBG000”, “service”: “storage-engine”, “service”: “store”, “path”: “/root/.influxdbv2/engine/data”}
2024-07-16T06:31:12.946448Z info Compaction settings {“log_id”: “0qQZeEBG000”, “service”: “storage-engine”, “service”: “store”, “max_concurrent_compactions”: 2, “throughput_bytes_per_second”: 50331648, “throughput_bytes_per_second_burst”: 50331648}
2024-07-16T06:31:12.946455Z info Open store (start) {“log_id”: “0qQZeEBG000”, “service”: “storage-engine”, “service”: “store”, “op_name”: “tsdb_open”, “op_event”: “start”}
2024-07-16T06:31:12.946492Z info Open store (end) {“log_id”: “0qQZeEBG000”, “service”: “storage-engine”, “service”: “store”, “op_name”: “tsdb_open”, “op_event”: “end”, “op_elapsed”: “0.037ms”}
2024-07-16T06:31:12.946506Z info Starting retention policy enforcement service {“log_id”: “0qQZeEBG000”, “service”: “retention”, “check_interval”: “30m”}
2024-07-16T06:31:12.946516Z info Starting precreation service {“log_id”: “0qQZeEBG000”, “service”: “shard-precreation”, “check_interval”: “10m”, “advance_period”: “30m”}
2024-07-16T06:31:12.947144Z info Starting query controller {“log_id”: “0qQZeEBG000”, “service”: “storage-reads”, “concurrency_quota”: 1024, “initial_memory_bytes_quota_per_query”: 9223372036854775807, “memory_bytes_quota_per_query”: 9223372036854775807, “max_memory_bytes”: 0, “queue_size”: 1024}
2024-07-16T06:31:12.949254Z info Configuring InfluxQL statement executor (zeros indicate unlimited). {“log_id”: “0qQZeEBG000”, “max_select_point”: 0, “max_select_series”: 0, “max_select_buckets”: 0}
2024-07-16T06:31:12.956453Z info Starting {“log_id”: “0qQZeEBG000”, “service”: “telemetry”, “interval”: “8h”}
2024-07-16T06:31:12.956502Z error Failed to set up TCP listener {“log_id”: “0qQZeEBG000”, “service”: “tcp-listener”, “addr”: “:8086”, “error”: “listen tcp :8086: bind: address already in use”}
Error: listen tcp :8086: bind: address already in use`
I am putting my docker config as well here
influxdb:
image: influxdb:2.7
container_name: influxdb
restart: always
ports:
- 8086:8086
networks:
- analytics
command: bash -c "influxd 2>&1 | tee -a /var/log/influxdb/influxdb.log"
volumes:
- $INSTALLDIR/mnt/influxdb/:/var/lib/influxdb2
- $INSTALLDIR/sys_config/etc/sysconf_influxdb/:/etc/influxdb/
- $INSTALLDIR/sys_config/etc/sysconf_influxdb/log:/var/log/influxdb
- $INSTALLDIR/sys_config/etc/sysconf_influxdb/ssl/influxdb-selfsigned.crt:/etc/ssl/influxdb-selfsigned.crt
- $INSTALLDIR/sys_config/etc/sysconf_influxdb/ssl/influxdb-selfsigned.key:/etc/ssl/influxdb-selfsigned.key
can anyone please help me on this?
Thanks