SilentInstall.xml File Parameters
The parameters in the SilentInstall.xml file are used for installing TIBCO MFT Internet Server in silent mode. It is not recommended to update this file unless instructed to by TIBCO Support.
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <silentinstall> <!-- Database Settings --> <arg name="db_type" value="mysql"/> <arg name="db_host" value="localhost"/> <arg name="db_port" value="3306"/> <arg name="db_ssl" value=""/> <arg name="db_ciphers" value=""/> <arg name="db_name" value="mft800"/> <arg name="db_oracle_type" value=""/> <arg name="db_user" value="root"/> <arg name="db_password" value="$$ENCODED:dCbWgIvpILRQgr5QivE1d8L7F2A="/> <arg name="db_drivertype" value=""/> <arg name="db_url" value=""/> <arg name="db_tablespace" value=""/> <arg name="db_classname" value="com.mysql.cj.jdbc.Driver"/> <!-- MFT Server Port Settings --> <arg name="httpsport" value="7443"/> <arg name="httpport" value="7080"/> <arg name="shutdownport" value="7005"/> <arg name="ajpport" value="7009"/> <!-- Keystore Settings --> <arg name="keystore" value="keystore.jks"/> <arg name="keystorepassword" value="$$ENCODED:QjhpudCGsR+s7YD91UB7ZKI0UV8="/> <arg name="keystorealias" value="cfcc"/> <!-- Miscellaneous Settings --> <arg name="admininstall" value="false"/> <arg name="hostname" value=""/> <arg name="context" value="cfcc"/> <arg name="logs_directory" value="logs"/> <arg name="adminuser" value="admin"/> <arg name="adminpassword" value="$$ENCODED:/8juoLVihSCqRDVNaq1moV7SD38="/> <arg name="allow_root" value="false"/> <arg name="win_service" value="false"/> <arg name="fips" value="false"/> </silentinstall>
Parameter | Description |
---|---|
db_classname | Defines the database driver Java class name. |
db_ciphers | Defines the ciphers to be used only when using Oracle database connections in SSL mode. |
db_drivertype | Defines the driver type when multiple driver types are available.
The valid values are jtds and microsoft. |
db_host | Defines the IP name or IP address of the database server. |
db_name | Defines the name of the database or schema. |
db_oracle_type | Defines the Oracle database type.
The valid values are sid and service. |
db_password | Defines the password for the database user.
There are two formats for this password: clear text password and Base64 encoded encrypted password. The Base64 encoded encrypted password format is generated by an MFT program, and cannot be set by editing the file. |
db_port | Defines the port that the database is listening on. |
db_ssl | Defines whether the database connections use SSL/TLS.
The valid values are: |
db_tablespace | Defines the DB2 tablespace name to be used. |
db_type | Defines the type of database you use.
The valid values are: mysql, oracle, db2, and mssql. |
db_url | Allows you to override the URL that MFT will normally generate. This parameter is optional.
When used, it will cause the installer to ignore these parameters: db_host, db_port and db_name. |
db_user | Defines the user name that has access to the defined database. |
Parameter | Description |
---|---|
keystore | Defines the name of the keystore file used by the HTTPS connector. |
keystorealias | Defines the keystore key alias used by the HTTPS connector. |
keystorepassword | Defines the encrypted keystore password. There are two formats for this password: clear text password and Base64 encoded encrypted password. The Base64 encoded encrypted password format is generated by an MFT program, and cannot be set by editing the file. |