Open hardy-pham opened 1 month ago
Can someone confirm that this is because Cluster Discovery doesn't support SSL?
Took a look at the source code and it seems to look for a
2024.10.04 01:39:43.151375 [ 22547 ] {}
But all other nodes have the same secure flag... Anyone have any idea what I'm missing here?
Describe the unexpected behaviour I'm currently working to enable SSL on my Clickhouse cluster. In doing so, I've followed these configurations: https://clickhouse.com/docs/en/guides/sre/configuring-ssl
The only difference here is that I am using cluster discovery as opposed to specifying my shard configurations.
In my server-config.xml, I have the following block that specifies which ports to use:
Even with these configurations, there are logs that indicate that the Clickhose nodes are trying to communicate with one another over port 9000 as opposed to 9440. Is there a setting that I am missing?? When I run this following query in the clickhouse client, it shows that my nodes are on port 9000 as well.
select * from system.clusters
What's unusual is that when I perform a telnet to port 9440, I'm able to connect successfully between the servers.
telnet <ip> 9440
Expected behavior I expect the servers to attempt to communicate with one another over port 9440 as opposed to port 9000.