Products | Versions |
---|---|
TIBCO Administrator | - |
Not Applicable | - |
Currently there is no DomainUtility Task to disable HTTPS, We need to manually disable HTTPS.
Manually modify the following two files. Make backup of the files first.
1). <tibco_home>/administrator/Domain/<DomainName>/tomcat/conf/server.xml
2). <tibco_home>/administrator/<version>/tomcat/webapps/ROOT/index.js
Find Connector like below in the <admin_home>/Domain/<DomainName>/tomcat/conf/server_<domain>.xml file
<Connector className="org.apache.catalina.connector.http.HttpConnector" port="8443" minProcessors="5" maxProcessors="75" enableLookups="true" acceptCount="10" debug="0" scheme="https" secure="true" allowChunking="false"> <Factory className="org.apache.catalina.net.SSLServerSocketFactory" clientAuth="false" protocol="TLS" keystoreFile="C:/tibco/administrator/domain/Ohio/SSL/keystore" keystorePass="password"/> </Connector>
<!-- <Connector className="org.apache.catalina.connector.http.HttpConnector" port="8080" minProcessors="5" maxProcessors="75" enableLookups="true" redirectPort="8443" acceptCount="10" debug="0" connectionTimeout="60000" allowChunking="false"/> -->
|
<!-- <Connector className="org.apache.catalina.connector.http.HttpConnector" port="8443" minProcessors="5" maxProcessors="75" enableLookups="true" acceptCount="10" debug="0" scheme="https" secure="true" allowChunking="false"> <Factory className="org.apache.catalina.net.SSLServerSocketFactory" clientAuth="false" protocol="TLS" keystoreFile="C:/tibco/administrator/domain/Ohio/SSL/keystore" keystorePass="password"/> </Connector> --> <Connector className="org.apache.catalina.connector.http.HttpConnector" port="8080" minProcessors="5" maxProcessors="75" enableLookups="true" redirectPort="8443" acceptCount="10" debug="0" connectionTimeout="60000" allowChunking="false"/>
|
Modify file <tibco_home>/administrator/<version>/tomcat/webapps/ROOT/index.js, and change the protocol and port number so that they match the new setting. For example, change
domainInfo="tibco510DB:https://frpei-t510:8443,..."
to
domainInfo="tibco510DB:http://frpei-t510:8080,..."