Configuring SSL on the TIBCO Enterprise Administrator Server

You can configure SSL between the browser and the server.

Procedure

  1. Open <TIBCO_CONFIG_HOME>\tibco\cfgmgmt\conf\tea.conf.
  2. Add the following entries as the child entries of the HTTP section:
    keystore = "<location of keystore file>"
    keystore-password = "<password>"
    cert-alias = "<certificateAlias>"
    The following is an example of the conf file with SSL settings:
    tea {
    http {
    host="0.0.0.0"
    port=8777
    idle-timeout=60000
    threadpool { acceptors = 0 selectors = 0 workers = 0 idle-timeout = 60000 }
    keystore = "C:/tmp/keystore.jks"
    keystore-password = "123456"
    cert-alias = "sitename2" 
    }
    }
    Note: The TIBCO Enterprise Administrator server supports the store formats supported by Java. Therefore, store formats such as, jks, jceks, pkcs12 are supported by the TIBCO Enterprise Administrator server. For a detailed list of supported store formats, refer to the KeyStore Types documentation on the Oracle Website.