...
- Open the
<PRODUCT_HOME>/repository/conf/tomcat/catalina-server.xml
file. - Take a backup of the
catalina-server.xml
file and stop the Carbon server. Find the Connector configuration corresponding to TLS (usually, this connector has the port set to 9443 and the
sslProtocol
as TLS). Remove thesslProtocol="TLS"
attribute and replace it withsslEnabledProtocols="TLSv1,TLSv1.1,TLSv1.2"
as shown below.Code Block language xml <Connector protocol="org.apache.coyote.http11.Http11NioProtocol" port="9443" bindOnInit="false" sslEnabledProtocols="TLSv1,TLSv1.1,TLSv1.2"
- Start the server.
...