OPTION 1:
To enable TLSv 1.2 in TIBCO Administrator . We can configure sslProtocol="TLSv1.2" in HTTP Connector element in <TIBCO_HOME>/Administrator/<Domain_Name>/tomcat/conf/server.xml
<Connector port="8443"
protocol="org.apache.coyote.http11.Http11Protocol"
maxThreads="150" SSLEnabled="true" scheme="https" secure="true"
keystoreFile="ssl/.keystore" keystorePass="changeit"
clientAuth="false" sslProtocol="SSL" sslEnabledProtocols="TLSv1.2" />
|
**NOTE: If OPTION 1 does not help please use OPTION 2 |
OPTION 2:
Please add following set of properties to tibcoadmin_<DomainName>.tra:
###############################Add Following Properties###############################
#Disable SSLV3
java.property.com.tibco.security.ssl.client.EnableSSLv3=false
java.property.com.tibco.security.ssl.server.EnableSSLv3=false
#Disable TLSv1.0
java.property.com.tibco.security.ssl.client.EnableTLSv1=false
java.property.com.tibco.security.ssl.server.EnableTLSv1=false
#Disable TLSv1.1
java.property.com.tibco.security.ssl.client.EnableTLSv11=false
java.property.com.tibco.security.ssl.server.EnableTLSv11=false
#Enable explicit protocol TLSv1.2
java.property.com.tibco.security.ssl.client.ExplicitProtocols=TLSv1.2
java.property.com.tibco.security.ssl.server.ExplicitProtocols=TLSv1.2
java.property.com.tibco.security.ssl.client.EnableSSLv2Hello=false
java.property.com.tibco.security.ssl.server.EnableSSLv2Hello=false
java.property.com.tibco.security.ssl.client.EnableSSLv3Hello=false
java.property.com.tibco.security.ssl.server.EnableSSLv3Hello=false
java.property.TIBCO_SECURITY_VENDOR=j2se
############################### END of Properties ######################################
NOTE: The value for ExplicitProtocols be combination of SSLv3,TLSv1,TLSv1.1,TLSv1.2 separated with comma, space( ',', ' ').
For example
java.property.com.tibco.security.ssl.server.ExplicitProtocols=SSLv3,TLSv1,TLSv1.1,TLSv1.2
To Troubleshoot/debug the issue add following property :
# To enable SSL Debug
java.property.javax.net.debug=ssl,handshake
--------------------------------------------------------------------------------------------------