How to revert a HTTPS domain back to using HTTP.

How to revert a HTTPS domain back to using HTTP.

book

Article ID: KB0087474

calendar_today

Updated On:

Products Versions
TIBCO Administrator -
Not Applicable -

Description

Description:
How to revert a HTTPS domain back to using HTTP.

Issue/Introduction

How to revert a HTTPS domain back to using HTTP.

Resolution

The preferred solution is to export the data from the HTTPS domain and import it into a new domain. However, you can try one of the following options:

1). If you have a back up of the files:


        [TIBCO HOME]/administrator/domain/[domain name]/tomcat/conf/server.xml
        [TIBCO HOME]/administrator /5.x/tomcat/webapps/ROOT/index.js


From before the domain was changed to use HTTPS. You can replace these files.


2). Otherwise you can try editing the files:


        [TIBCO HOME]/administrator/domain/[domain name]/tomcat/conf/server.xml
        [TIBCO HOME]/administrator /5.x/tomcat/webapps/ROOT/index.js


    For the server.xml file you need to remove/comment the line starting:

        <Connector port="…

    and replace it with the following line:

        <Connector port="XXXX" maxHttpHeaderSize="8192" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="8443" acceptCount="100" connectionTimeout="20000" disableUploadTimeout="true"/>

You need to replace XXXX with the appropriate port value. The index.js file needs to be updated with the new URL for the Administrator server that has changed. Search for the domain name and then amend the URL that follows. If you edit any files, you should make a backup first.