SSL real Certeficate ERR_SSL_VERSION_OR_CIPHER_MISMATCH
-
I used valid working real certificates and i get error: ERR_SSL_VERSION_OR_CIPHER_MISMATCH
Client and server support different versions of SSL or cipher suite.added certificates like this:
"%JAVA_HOME%"\bin\keytool.exe -import -keystore homediy.jks -storepass mypass -noprompt -alias homediy -file mycert.crt
and also made changes to the configuration:
mcc.web.ssl.keystore.file=../conf/homediy.jks mcc.web.ssl.keystore.password=mypass mcc.web.ssl.keystore.type=JKS
are there solutions?
-
@Clone-Tv I could not find the root cause for the issue you reported.
But I have working command, kindly follow this command and update the status.keytool -genkey -keyalg RSA -alias mycontroller -keystore selfsigned.jks -validity 365 -keysize 2048
Update: if you plan to use like letsencrypt, follow this: https://forum.mycontroller.org/topic/91/how-to-enable-a-ssl-certificate/3
-
Thanks, it helped, but it does not solve the real certificate issue. Everyone knows how to generate a new one without trust.
-