'Spring boot(Tomcat) ERR_SSL_VERSION_OR_CIPHER_MISMATCH on MacOS only

I have a problem that only happened on macOS(linux and windows works fine),

we are using tomcat server via spring web, the only ssl related configuration is:

server:
  ssl:
    key-store-password: password
    key-password: password
    key-store: <path to jks>
    key-alias: alias
    enabled: true

when trying to access the server via chrome we get:

ERR_SSL_VERSION_OR_CIPHER_MISMATCH

when trying to call via postman we also get the following:

enter image description here

spring boot version is 2.6.3,

any ideas?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source