Enabling SSL but still collection shard base_url showing http communication

Viewed 27

I am new in SOLR 8.11.2 and trying to enable SSL and authentication but when I follow the manual all start working but communication between nodes and shard is still in HTTP.

https://127.0.0.1:8981/solr/admin/collections?action=CLUSTERSTATUS&indent=on { "responseHeader":{ "status":0, "QTime":4}, "cluster":{ "collections":{ ".system":{ "pullReplicas":"0", "replicationFactor":"2", "shards":{"shard1":{ "range":"80000000-7fffffff", "state":"active", "replicas":{ "core_node3":{ "core":".system_shard1_replica_n1", "base_url":"http://solr3:8984/solr", "node_name":"solr3:8984_solr", "state":"active", "type":"NRT", "force_set_state":"false", "leader":"true"}, "core_node4":{ "core":".system_shard1_replica_n2", "base_url":"http://solr1:8984/solr", "node_name":"solr1:8984_solr", "state":"active", "type":"NRT", "force_set_state":"false"}}}}, "router":{"name":"compositeId"}, "maxShardsPerNode":"1", "autoAddReplicas":"false", "nrtReplicas":"2", "tlogReplicas":"0", "znodeVersion":6, "configName":".system"}}, "properties":{"urlScheme":"https"}, "live_nodes":["solr2:8984_solr", "solr1:8984_solr", "solr3:8984_solr"]}}

my environment settings:

    SOLR_SSL_ENABLED: 'true' 
    SOLR_SSL_KEY_STORE: /etc/solr-ssl.keystore.jks 
    SOLR_SSL_KEY_STORE_PASSWORD: $SOLR_SECRET 
    SOLR_SSL_TRUST_STORE: /etc/solr-ssl.keystore.jks 
    SOLR_SSL_TRUST_STORE_PASSWORD: $SOLR_SECRET # Require clients to authenticate 
    SOLR_SSL_NEED_CLIENT_AUTH: 'false' # Enable clients to authenticate (but not require) 
    SOLR_SSL_WANT_CLIENT_AUTH: 'false' # Define Key Store type if necessary 
    SOLR_SSL_KEY_STORE_TYPE: JKS 
    SOLR_SSL_TRUST_STORE_TYPE: JKS SOLR_SSL_CHECK_PEER_NAME: 'false'

Do i miss anything?

0 Answers
Related